Lines Matching defs:pPict
224 static Bool i830_check_composite_texture(ScrnInfoPtr pScrn, PicturePtr pPict, int unit)
226 if (pPict->repeatType > RepeatReflect)
227 I830FALLBACK("Unsupported picture repeat %d\n", pPict->repeatType);
229 if (pPict->filter != PictFilterNearest &&
230 pPict->filter != PictFilterBilinear)
232 I830FALLBACK("Unsupported filter 0x%x\n", pPict->filter);
235 if (pPict->pDrawable)
239 w = pPict->pDrawable->width;
240 h = pPict->pDrawable->height;
247 if (i830_tex_formats[i].fmt == pPict->format)
252 (int)pPict->format);
259 i8xx_get_card_format(PicturePtr pPict)
265 if (i830_tex_formats[i].fmt == pPict->format)
268 FatalError("Unsupported format type %d\n", pPict->format);
272 i830_texture_setup(PicturePtr pPict, PixmapPtr pPix, int unit)
275 ScrnInfoPtr pScrn = xf86Screens[pPict->pDrawable->pScreen->myNum];
284 pI830->transform[unit] = pPict->transform;
291 format = i8xx_get_card_format(pPict);
293 switch (pPict->repeatType) {
307 FatalError("Unknown repeat type %d\n", pPict->repeatType);
310 switch (pPict->filter) {
321 FatalError("Bad filter 0x%x\n", pPict->filter);