Lines Matching refs:pPict
172 static Bool i915_check_composite_texture(ScrnInfoPtr pScrn, PicturePtr pPict, int unit)
174 if (pPict->repeatType > RepeatReflect)
175 I830FALLBACK("Unsupported picture repeat %d\n", pPict->repeatType);
177 if (pPict->filter != PictFilterNearest &&
178 pPict->filter != PictFilterBilinear)
179 I830FALLBACK("Unsupported filter 0x%x\n", pPict->filter);
181 if (pPict->pDrawable)
185 w = pPict->pDrawable->width;
186 h = pPict->pDrawable->height;
193 if (i915_tex_formats[i].fmt == pPict->format)
198 (int)pPict->format);
239 i915_texture_setup(PicturePtr pPict, PixmapPtr pPix, int unit)
241 ScrnInfoPtr pScrn = xf86Screens[pPict->pDrawable->pScreen->myNum];
248 w = pPict->pDrawable->width;
249 h = pPict->pDrawable->height;
256 if (i915_tex_formats[i].fmt == pPict->format)
263 switch (pPict->repeatType) {
277 FatalError("Unknown repeat type %d\n", pPict->repeatType);
280 switch (pPict->filter) {
291 I830FALLBACK("Bad filter 0x%x\n", pPict->filter);
310 pI830->transform[unit] = pPict->transform;