Lines Matching refs:glyphs
11 be a lower level XAA function which renders these clipped glyphs using
187 pointer pglyphBase /* start of array of glyphs */
207 pointer pglyphBase /* start of array of glyphs */
238 NonTEGlyphPtr glyphs,
245 for(i = 0; i < nglyph; i++, ppci++, glyphs++) {
246 glyphs->bits = (unsigned char*)((*ppci)->bits);
247 glyphs->start = w + (*ppci)->metrics.leftSideBearing;
248 glyphs->end = w + (*ppci)->metrics.rightSideBearing;
249 glyphs->yoff = (*ppci)->metrics.ascent;
250 glyphs->height = glyphs->yoff + (*ppci)->metrics.descent;
251 glyphs->srcwidth = PADGLYPHWIDTHBYTES(glyphs->end - glyphs->start);
277 NonTEGlyphPtr glyphs = infoRec->GlyphInfo;
299 top = -glyphs->yoff;
300 bot = top + glyphs->height;
303 skippix = glyphs->start - infoRec->GlyphInfo[0].start;
304 bits = (CARD32*)glyphs->bits;
305 bitPitch = glyphs->srcwidth >> 2;
309 extra = ((shift + glyphs->end - glyphs->start) > 32);
319 glyphs++;
539 /* It is possible that the none of the glyphs passed to the
547 NonTEGlyphPtr glyphs,
556 for(i = 0; i < n; i++, glyphs++) {
557 x1 = x + glyphs->start;
558 x2 = x + glyphs->end;
559 y1 = y - glyphs->yoff;
560 y2 = y1 + glyphs->height;
579 src = glyphs->bits + (skiptop * glyphs->srcwidth);
587 glyphs->srcwidth, skipleft, fg, -1, rop, planemask);