Lines Matching defs:pGC
70 miPolyText8(DrawablePtr pDraw, GCPtr pGC, int x, int y, int count, char *chars)
76 GetGlyphs(pGC->font, (unsigned long)count, (unsigned char *)chars,
81 (*pGC->ops->PolyGlyphBlt)(
82 pDraw, pGC, x, y, n, charinfo, FONTGLYPHS(pGC->font));
87 miPolyText16(DrawablePtr pDraw, GCPtr pGC, int x, int y, int count, unsigned short *chars)
93 GetGlyphs(pGC->font, (unsigned long)count, (unsigned char *)chars,
94 (FONTLASTROW(pGC->font) == 0) ? Linear16Bit : TwoD16Bit,
99 (*pGC->ops->PolyGlyphBlt)(
100 pDraw, pGC, x, y, n, charinfo, FONTGLYPHS(pGC->font));
105 miImageText8(DrawablePtr pDraw, GCPtr pGC, int x, int y, int count, char *chars)
108 FontPtr font = pGC->font;
114 (*pGC->ops->ImageGlyphBlt)(pDraw, pGC, x, y, n, charinfo, FONTGLYPHS(font));
118 miImageText16(DrawablePtr pDraw, GCPtr pGC, int x, int y,
122 FontPtr font = pGC->font;
126 (FONTLASTROW(pGC->font) == 0) ? Linear16Bit : TwoD16Bit,
129 (*pGC->ops->ImageGlyphBlt)(pDraw, pGC, x, y, n, charinfo, FONTGLYPHS(font));