Lines Matching refs:pWindow

65 TopLevelParent(WindowPtr pWindow)  in TopLevelParent()  argument
69 if (IsRoot(pWindow)) in TopLevelParent()
70 return pWindow; in TopLevelParent()
72 top = pWindow; in TopLevelParent()
144 RootlessStartDrawing(WindowPtr pWindow) in RootlessStartDrawing() argument
146 ScreenPtr pScreen = pWindow->drawable.pScreen; in RootlessStartDrawing()
147 WindowPtr top = TopLevelParent(pWindow); in RootlessStartDrawing()
175 curPixmap = pScreen->GetWindowPixmap(pWindow); in RootlessStartDrawing()
178 pWindow, winRec->pixmap); in RootlessStartDrawing()
182 dixLookupPrivate(&pWindow->devPrivates, in RootlessStartDrawing()
188 pWindow, curPixmap); in RootlessStartDrawing()
191 pWindow, oldPixmap); in RootlessStartDrawing()
193 dixSetPrivate(&pWindow->devPrivates, rootlessWindowOldPixmapPrivateKey, in RootlessStartDrawing()
195 pScreen->SetWindowPixmap(pWindow, winRec->pixmap); in RootlessStartDrawing()
205 RestorePreDrawingPixmapVisitor(WindowPtr pWindow, void *data) in RestorePreDrawingPixmapVisitor() argument
208 ScreenPtr pScreen = pWindow->drawable.pScreen; in RestorePreDrawingPixmapVisitor()
209 PixmapPtr exPixmap = pScreen->GetWindowPixmap(pWindow); in RestorePreDrawingPixmapVisitor()
211 dixLookupPrivate(&pWindow->devPrivates, in RestorePreDrawingPixmapVisitor()
217 pWindow, exPixmap); in RestorePreDrawingPixmapVisitor()
223 pWindow, oldPixmap, exPixmap, winRec->pixmap); in RestorePreDrawingPixmapVisitor()
227 pWindow, oldPixmap); in RestorePreDrawingPixmapVisitor()
228 pScreen->SetWindowPixmap(pWindow, oldPixmap); in RestorePreDrawingPixmapVisitor()
229 dixSetPrivate(&pWindow->devPrivates, rootlessWindowOldPixmapPrivateKey, in RestorePreDrawingPixmapVisitor()
236 RootlessStopDrawing(WindowPtr pWindow, Bool flush) in RootlessStopDrawing() argument
238 ScreenPtr pScreen = pWindow->drawable.pScreen; in RootlessStopDrawing()
239 WindowPtr top = TopLevelParent(pWindow); in RootlessStopDrawing()
263 RootlessReorderWindow(pWindow); in RootlessStopDrawing()
273 RootlessDamageRegion(WindowPtr pWindow, RegionPtr pRegion) in RootlessDamageRegion() argument
280 RL_DEBUG_MSG("Damaged win 0x%x ", pWindow); in RootlessDamageRegion()
282 pTop = TopLevelParent(pWindow); in RootlessDamageRegion()
298 b1 = RegionExtents(&pWindow->borderClip); in RootlessDamageRegion()
310 in = RegionContainsRect(&pWindow->borderClip, RegionRects(pRegion)); in RootlessDamageRegion()
314 SCREENREC(pWindow->drawable.pScreen)->imp->DamageRects(winRec-> in RootlessDamageRegion()
338 RegionIntersect(&clipped, &pWindow->borderClip, pRegion); in RootlessDamageRegion()
340 SCREENREC(pWindow->drawable.pScreen)->imp->DamageRects(winRec->wid, in RootlessDamageRegion()
374 RootlessDamageBox(WindowPtr pWindow, BoxPtr pBox) in RootlessDamageBox() argument
380 RootlessDamageRegion(pWindow, &region); in RootlessDamageBox()
391 RootlessDamageRect(WindowPtr pWindow, int x, int y, int w, int h) in RootlessDamageRect() argument
396 x += pWindow->drawable.x; in RootlessDamageRect()
397 y += pWindow->drawable.y; in RootlessDamageRect()
406 RootlessDamageRegion(pWindow, &region); in RootlessDamageRect()
416 RootlessRedisplay(WindowPtr pWindow) in RootlessRedisplay() argument
418 RootlessStopDrawing(pWindow, TRUE); in RootlessRedisplay()