Lines Matching defs:pPict
294 mgaGetTexFormat(PicturePtr pPict)
312 if (ptr->fmt == pPict->format)
319 mgaCheckSourceTexture(int tmu, PicturePtr pPict)
321 if (!pPict->pDrawable) {
326 int w = pPict->pDrawable->width;
327 int h = pPict->pDrawable->height;
334 if (!mgaGetTexFormat(pPict)) {
335 DEBUG_MSG(("Unsupported picture format 0x%x\n", pPict->format));
339 if (pPict->repeatType != RepeatNormal) {
340 DEBUG_MSG(("Unsupported repeat type %d\n", pPict->repeatType));
344 if (pPict->repeat && ((w & (w - 1)) != 0 || (h & (h - 1)) != 0)) {
349 if (pPict->filter != PictFilterNearest &&
350 pPict->filter != PictFilterBilinear) {
351 DEBUG_MSG(("Unsupported filter 0x%x\n", pPict->filter));