EXA: Accumulate arbitrary number of glyphs without flushing.

This commit is contained in:
Michel Dänzer 2009-09-26 02:05:06 +02:00
parent 0369eeeb6b
commit c11678cc18

View File

@ -62,15 +62,10 @@
*/ */
#define CACHE_PICTURE_WIDTH 1024 #define CACHE_PICTURE_WIDTH 1024
/* Maximum number of glyphs we buffer on the stack before flushing
* rendering to the mask or destination surface.
*/
#define GLYPH_BUFFER_SIZE 256
typedef struct { typedef struct {
PicturePtr mask; PicturePtr mask;
ExaCompositeRectRec rects[GLYPH_BUFFER_SIZE];
int count; int count;
ExaCompositeRectRec rects[0];
} ExaGlyphBuffer, *ExaGlyphBufferPtr; } ExaGlyphBuffer, *ExaGlyphBufferPtr;
typedef enum { typedef enum {
@ -553,16 +548,13 @@ exaBufferGlyph(ScreenPtr pScreen,
INT16 yDst) INT16 yDst)
{ {
ExaScreenPriv(pScreen); ExaScreenPriv(pScreen);
unsigned int format = (GlyphPicture(pGlyph)[pScreen->myNum])->format; PicturePtr mask = GlyphPicture(pGlyph)[pScreen->myNum];
unsigned int format = mask->format;
int width = pGlyph->info.width; int width = pGlyph->info.width;
int height = pGlyph->info.height; int height = pGlyph->info.height;
ExaCompositeRectPtr rect; ExaCompositeRectPtr rect;
PicturePtr mask;
int i; int i;
if (buffer->count == GLYPH_BUFFER_SIZE)
return ExaGlyphNeedFlush;
if (PICT_FORMAT_BPP(format) == 1) if (PICT_FORMAT_BPP(format) == 1)
format = PICT_a8; format = PICT_a8;
@ -593,7 +585,6 @@ exaBufferGlyph(ScreenPtr pScreen,
/* Couldn't find the glyph in the cache, use the glyph picture directly */ /* Couldn't find the glyph in the cache, use the glyph picture directly */
mask = GlyphPicture(pGlyph)[pScreen->myNum];
if (buffer->mask && buffer->mask != mask) if (buffer->mask && buffer->mask != mask)
return ExaGlyphNeedFlush; return ExaGlyphNeedFlush;
@ -707,12 +698,18 @@ exaGlyphs (CARD8 op,
int width = 0, height = 0; int width = 0, height = 0;
int x, y; int x, y;
int first_xOff = list->xOff, first_yOff = list->yOff; int first_xOff = list->xOff, first_yOff = list->yOff;
int n; int i, n;
GlyphPtr glyph; GlyphPtr glyph;
int error; int error;
BoxRec extents = {0, 0, 0, 0}; BoxRec extents = {0, 0, 0, 0};
CARD32 component_alpha; CARD32 component_alpha;
ExaGlyphBuffer buffer; ExaGlyphBufferPtr buffer;
for (i = 0, n = 0; i < nlist; i++)
n += list[i].len;
buffer = alloca(sizeof(ExaGlyphBuffer) + n * sizeof(ExaCompositeRectRec));
if (!buffer)
return;
if (maskFormat) if (maskFormat)
{ {
@ -792,8 +789,8 @@ exaGlyphs (CARD8 op,
x = 0; x = 0;
y = 0; y = 0;
} }
buffer.count = 0; buffer->count = 0;
buffer.mask = NULL; buffer->mask = NULL;
while (nlist--) while (nlist--)
{ {
x += list->xOff; x += list->xOff;
@ -808,23 +805,23 @@ exaGlyphs (CARD8 op,
/* pGlyph->info.{x,y} compensate for empty space in the glyph. */ /* pGlyph->info.{x,y} compensate for empty space in the glyph. */
if (maskFormat) if (maskFormat)
{ {
if (exaBufferGlyph(pScreen, &buffer, glyph, NULL, pMask, if (exaBufferGlyph(pScreen, buffer, glyph, NULL, pMask,
0, 0, 0, 0, x - glyph->info.x, y - glyph->info.y) == ExaGlyphNeedFlush) 0, 0, 0, 0, x - glyph->info.x, y - glyph->info.y) == ExaGlyphNeedFlush)
{ {
exaGlyphsToMask(pMask, &buffer); exaGlyphsToMask(pMask, buffer);
exaBufferGlyph(pScreen, &buffer, glyph, NULL, pMask, exaBufferGlyph(pScreen, buffer, glyph, NULL, pMask,
0, 0, 0, 0, x - glyph->info.x, y - glyph->info.y); 0, 0, 0, 0, x - glyph->info.x, y - glyph->info.y);
} }
} }
else else
{ {
if (exaBufferGlyph(pScreen, &buffer, glyph, pSrc, pDst, if (exaBufferGlyph(pScreen, buffer, glyph, pSrc, pDst,
xSrc + (x - glyph->info.x) - first_xOff, ySrc + (y - glyph->info.y) - first_yOff, xSrc + (x - glyph->info.x) - first_xOff, ySrc + (y - glyph->info.y) - first_yOff,
0, 0, x - glyph->info.x, y - glyph->info.y) 0, 0, x - glyph->info.x, y - glyph->info.y)
== ExaGlyphNeedFlush) == ExaGlyphNeedFlush)
{ {
exaGlyphsToDst(pSrc, pDst, &buffer); exaGlyphsToDst(pSrc, pDst, buffer);
exaBufferGlyph(pScreen, &buffer, glyph, pSrc, pDst, exaBufferGlyph(pScreen, buffer, glyph, pSrc, pDst,
xSrc + (x - glyph->info.x) - first_xOff, ySrc + (y - glyph->info.y) - first_yOff, xSrc + (x - glyph->info.x) - first_xOff, ySrc + (y - glyph->info.y) - first_yOff,
0, 0, x - glyph->info.x, y - glyph->info.y); 0, 0, x - glyph->info.x, y - glyph->info.y);
} }
@ -837,11 +834,11 @@ exaGlyphs (CARD8 op,
list++; list++;
} }
if (buffer.count) { if (buffer->count) {
if (maskFormat) if (maskFormat)
exaGlyphsToMask(pMask, &buffer); exaGlyphsToMask(pMask, buffer);
else else
exaGlyphsToDst(pSrc, pDst, &buffer); exaGlyphsToDst(pSrc, pDst, buffer);
} }
if (maskFormat) if (maskFormat)