Lines Matching refs:pFormat
146 CARD16 blue, CARD16 alpha, PictFormatPtr pFormat) in exaGetPixelFromRGBA() argument
153 if (!PICT_FORMAT_COLOR(pFormat->format) && in exaGetPixelFromRGBA()
154 PICT_FORMAT_TYPE(pFormat->format) != PICT_TYPE_A) in exaGetPixelFromRGBA()
157 rbits = PICT_FORMAT_R(pFormat->format); in exaGetPixelFromRGBA()
158 gbits = PICT_FORMAT_G(pFormat->format); in exaGetPixelFromRGBA()
159 bbits = PICT_FORMAT_B(pFormat->format); in exaGetPixelFromRGBA()
160 abits = PICT_FORMAT_A(pFormat->format); in exaGetPixelFromRGBA()
162 rshift = pFormat->direct.red; in exaGetPixelFromRGBA()
163 gshift = pFormat->direct.green; in exaGetPixelFromRGBA()
164 bshift = pFormat->direct.blue; in exaGetPixelFromRGBA()
165 ashift = pFormat->direct.alpha; in exaGetPixelFromRGBA()
181 PictFormatPtr pFormat, PictFormatShort format) in exaGetRGBAFromPixel() argument
194 if (pFormat) { in exaGetRGBAFromPixel()
195 rshift = pFormat->direct.red; in exaGetRGBAFromPixel()
196 gshift = pFormat->direct.green; in exaGetRGBAFromPixel()
197 bshift = pFormat->direct.blue; in exaGetRGBAFromPixel()
198 ashift = pFormat->direct.alpha; in exaGetRGBAFromPixel()
300 pSrc->pFormat, pSrc->format) || in exaTryDriverSolidFill()
301 !exaGetPixelFromRGBA(&pixel, red, green, blue, alpha, pDst->pFormat)) { in exaTryDriverSolidFill()