Lines Matching refs:pPixmap

35 exaCreateDriverPixmap_mixed(PixmapPtr pPixmap)  in exaCreateDriverPixmap_mixed()  argument
37 ScreenPtr pScreen = pPixmap->drawable.pScreen; in exaCreateDriverPixmap_mixed()
40 ExaPixmapPriv(pPixmap); in exaCreateDriverPixmap_mixed()
41 int w = pPixmap->drawable.width, h = pPixmap->drawable.height; in exaCreateDriverPixmap_mixed()
42 int depth = pPixmap->drawable.depth, bpp = pPixmap->drawable.bitsPerPixel; in exaCreateDriverPixmap_mixed()
43 int usage_hint = pPixmap->usage_hint; in exaCreateDriverPixmap_mixed()
50 if (exaPixmapIsPinned(pPixmap)) in exaCreateDriverPixmap_mixed()
75 (*pScreen->ModifyPixmapHeader) (pPixmap, w, h, 0, 0, paddedWidth, NULL); in exaCreateDriverPixmap_mixed()
99 PixmapPtr pPixmap = pixmaps[i].pPix; in exaDoMigration_mixed() local
101 ExaPixmapPriv(pPixmap); in exaDoMigration_mixed()
104 exaCreateDriverPixmap_mixed(pPixmap); in exaDoMigration_mixed()
106 if (pExaPixmap->pDamage && exaPixmapHasGpuCopy(pPixmap)) { in exaDoMigration_mixed()
107 ExaScreenPriv(pPixmap->drawable.pScreen); in exaDoMigration_mixed()
117 pPixmap->devKind = pExaPixmap->fb_pitch; in exaDoMigration_mixed()
120 if (pExaScr->deferred_mixed_pixmap == pPixmap && in exaDoMigration_mixed()
125 pExaPixmap->use_gpu_copy = exaPixmapHasGpuCopy(pPixmap); in exaDoMigration_mixed()
130 exaMoveInPixmap_mixed(PixmapPtr pPixmap) in exaMoveInPixmap_mixed() argument
136 pixmaps[0].pPix = pPixmap; in exaMoveInPixmap_mixed()
145 PixmapPtr pPixmap = closure; in exaDamageReport_mixed() local
147 ExaPixmapPriv(pPixmap); in exaDamageReport_mixed()
155 if (!pExaPixmap->use_gpu_copy && exaPixmapHasGpuCopy(pPixmap)) { in exaDamageReport_mixed()
156 ExaScreenPriv(pPixmap->drawable.pScreen); in exaDamageReport_mixed()
159 pExaScr->deferred_mixed_pixmap != pPixmap) in exaDamageReport_mixed()
161 pExaScr->deferred_mixed_pixmap = pPixmap; in exaDamageReport_mixed()
171 exaPrepareAccessReg_mixed(PixmapPtr pPixmap, int index, RegionPtr pReg) in exaPrepareAccessReg_mixed() argument
173 ExaPixmapPriv(pPixmap); in exaPrepareAccessReg_mixed()
174 Bool has_gpu_copy = exaPixmapHasGpuCopy(pPixmap); in exaPrepareAccessReg_mixed()
177 success = ExaDoPrepareAccess(pPixmap, index); in exaPrepareAccessReg_mixed()
181 exaFinishAccess(&pPixmap->drawable, index); in exaPrepareAccessReg_mixed()
185 exaMoveInPixmap_mixed(pPixmap); in exaPrepareAccessReg_mixed()
186 success = ExaDoPrepareAccess(pPixmap, index); in exaPrepareAccessReg_mixed()
209 pPixmap->drawable.height); in exaPrepareAccessReg_mixed()
212 pExaPixmap->sys_pitch * pPixmap->drawable.height); in exaPrepareAccessReg_mixed()
223 pixmaps[0].pPix = pPixmap; in exaPrepareAccessReg_mixed()
227 (has_gpu_copy || !exaPixmapIsPinned(pPixmap))) { in exaPrepareAccessReg_mixed()
233 pPixmap->drawable.pScreen, in exaPrepareAccessReg_mixed()
234 pPixmap); in exaPrepareAccessReg_mixed()
237 DamageRegister(&pPixmap->drawable, pExaPixmap->pDamage); in exaPrepareAccessReg_mixed()
245 exaPixmapDirty(pPixmap, 0, 0, pPixmap->drawable.width, in exaPrepareAccessReg_mixed()
246 pPixmap->drawable.height); in exaPrepareAccessReg_mixed()
260 exaPixmapDirty(pPixmap, 0, 0, pPixmap->drawable.width, in exaPrepareAccessReg_mixed()
261 pPixmap->drawable.height); in exaPrepareAccessReg_mixed()
266 pPixmap->devPrivate.ptr = pExaPixmap->sys_ptr; in exaPrepareAccessReg_mixed()
267 pPixmap->devKind = pExaPixmap->sys_pitch; in exaPrepareAccessReg_mixed()