Lines Matching refs:pScreen
86 static void DRIDestroyDummyContext(ScreenPtr pScreen, Bool hasCtxPriv);
279 DRIClipNotifyAllDrawables(ScreenPtr pScreen);
282 dri_crtc_notify(ScreenPtr pScreen) in dri_crtc_notify() argument
284 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in dri_crtc_notify()
286 DRIClipNotifyAllDrawables(pScreen); in dri_crtc_notify()
287 xf86_unwrap_crtc_notify(pScreen, pDRIPriv->xf86_crtc_notify); in dri_crtc_notify()
288 xf86_crtc_notify(pScreen); in dri_crtc_notify()
290 xf86_wrap_crtc_notify(pScreen, dri_crtc_notify); in dri_crtc_notify()
356 DRIScreenInit(ScreenPtr pScreen, DRIInfoPtr pDRIInfo, int *pDRMFD) in DRIScreenInit() argument
363 ScrnInfoPtr pScrn = xf86ScreenToScrn(pScreen); in DRIScreenInit()
370 DRIDrvMsg(pScreen->myNum, X_WARNING, in DRIScreenInit()
375 if (!xf86VGAarbiterAllowDRI(pScreen)) { in DRIScreenInit()
376 DRIDrvMsg(pScreen->myNum, X_WARNING, in DRIScreenInit()
387 DRIDrvMsg(pScreen->myNum, X_WARNING, in DRIScreenInit()
413 dixSetPrivate(&pScreen->devPrivates, DRIScreenPrivKey, NULL); in DRIScreenInit()
417 dixSetPrivate(&pScreen->devPrivates, DRIScreenPrivKey, pDRIPriv); in DRIScreenInit()
439 dixSetPrivate(&pScreen->devPrivates, DRIScreenPrivKey, NULL); in DRIScreenInit()
441 DRIDrvMsg(pScreen->myNum, X_INFO, "[drm] drmAddMap failed\n"); in DRIScreenInit()
444 DRIDrvMsg(pScreen->myNum, X_INFO, in DRIScreenInit()
454 dixSetPrivate(&pScreen->devPrivates, DRIScreenPrivKey, NULL); in DRIScreenInit()
456 DRIDrvMsg(pScreen->myNum, X_INFO, "[drm] drmMap failed\n"); in DRIScreenInit()
459 DRIDrvMsg(pScreen->myNum, X_INFO, "[drm] mapped SAREA %p to %p\n", in DRIScreenInit()
464 DRIDrvMsg(pScreen->myNum, X_INFO, "[drm] Using the DRM lock " in DRIScreenInit()
481 dixSetPrivate(&pScreen->devPrivates, DRIScreenPrivKey, NULL); in DRIScreenInit()
484 DRIDrvMsg(pScreen->myNum, X_INFO, "[drm] drmAddMap failed\n"); in DRIScreenInit()
487 DRIDrvMsg(pScreen->myNum, X_INFO, "[drm] framebuffer handle = %p\n", in DRIScreenInit()
491 DRIDrvMsg(pScreen->myNum, X_INFO, in DRIScreenInit()
496 pDRIEntPriv->resOwner = pScreen; in DRIScreenInit()
505 tag = DRICreateContextPrivFromHandle(pScreen, in DRIScreenInit()
511 DRIDrvMsg(pScreen->myNum, X_INFO, in DRIScreenInit()
520 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRIScreenInit()
550 if (!(pDRIContextPriv = DRICreateContextPriv(pScreen, in DRIScreenInit()
553 DRIDrvMsg(pScreen->myNum, X_ERROR, "failed to create server context\n"); in DRIScreenInit()
558 DRIDrvMsg(pScreen->myNum, X_INFO, in DRIScreenInit()
564 DRILock(pScreen, 0); in DRIScreenInit()
581 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRIScreenInit()
591 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRIScreenInit()
600 (*pDRIInfo->SwapContext) (pScreen, in DRIScreenInit()
614 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRIScreenInit()
622 DRIDrvMsg(pScreen->myNum, X_INFO, in DRIScreenInit()
634 DRIFinishScreenInit(ScreenPtr pScreen) in DRIFinishScreenInit() argument
636 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIFinishScreenInit()
641 pDRIPriv->wrap.WindowExposures = pScreen->WindowExposures; in DRIFinishScreenInit()
642 pScreen->WindowExposures = pDRIInfo->wrap.WindowExposures; in DRIFinishScreenInit()
645 pDRIPriv->DestroyWindow = pScreen->DestroyWindow; in DRIFinishScreenInit()
646 pScreen->DestroyWindow = DRIDestroyWindow; in DRIFinishScreenInit()
648 pDRIPriv->xf86_crtc_notify = xf86_wrap_crtc_notify(pScreen, in DRIFinishScreenInit()
652 pDRIPriv->wrap.CopyWindow = pScreen->CopyWindow; in DRIFinishScreenInit()
653 pScreen->CopyWindow = pDRIInfo->wrap.CopyWindow; in DRIFinishScreenInit()
656 pDRIPriv->wrap.ClipNotify = pScreen->ClipNotify; in DRIFinishScreenInit()
657 pScreen->ClipNotify = pDRIInfo->wrap.ClipNotify; in DRIFinishScreenInit()
660 ScrnInfoPtr pScrn = xf86ScreenToScrn(pScreen); in DRIFinishScreenInit()
667 DRIDrvMsg(pScreen->myNum, X_INFO, "[DRI] installation complete\n"); in DRIFinishScreenInit()
673 DRICloseScreen(ScreenPtr pScreen) in DRICloseScreen() argument
675 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRICloseScreen()
679 ScrnInfoPtr pScrn = xf86ScreenToScrn(pScreen); in DRICloseScreen()
690 pScreen->WindowExposures = pDRIPriv->wrap.WindowExposures; in DRICloseScreen()
694 pScreen->DestroyWindow = pDRIPriv->DestroyWindow; in DRICloseScreen()
698 xf86_unwrap_crtc_notify(pScreen, pDRIPriv->xf86_crtc_notify); in DRICloseScreen()
701 pScreen->CopyWindow = pDRIPriv->wrap.CopyWindow; in DRICloseScreen()
705 pScreen->ClipNotify = pDRIPriv->wrap.ClipNotify; in DRICloseScreen()
709 ScrnInfoPtr scrn = xf86ScreenToScrn(pScreen); in DRICloseScreen()
720 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRICloseScreen()
726 DRIDestroyDummyContext(pScreen, pDRIPriv->createDummyCtxPriv); in DRICloseScreen()
730 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRICloseScreen()
735 if (pDRIEntPriv->resOwner == pScreen) { in DRICloseScreen()
747 DRIDrvMsg(pScreen->myNum, X_INFO, in DRICloseScreen()
759 DRIDrvMsg(pScreen->myNum, X_INFO, in DRICloseScreen()
763 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRICloseScreen()
777 DRIDrvMsg(pScreen->myNum, X_INFO, "[drm] Closed DRM master.\n"); in DRICloseScreen()
783 dixSetPrivate(&pScreen->devPrivates, DRIScreenPrivKey, NULL); in DRICloseScreen()
846 DRIQueryDirectRenderingCapable(ScreenPtr pScreen, Bool *isCapable) in DRIQueryDirectRenderingCapable() argument
848 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIQueryDirectRenderingCapable()
859 DRIOpenConnection(ScreenPtr pScreen, drm_handle_t * hSAREA, char **busIdString) in DRIOpenConnection() argument
861 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIOpenConnection()
870 DRIAuthConnection(ScreenPtr pScreen, drm_magic_t magic) in DRIAuthConnection() argument
872 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIAuthConnection()
880 DRICloseConnection(ScreenPtr pScreen) in DRICloseConnection() argument
886 DRIGetClientDriverName(ScreenPtr pScreen, in DRIGetClientDriverName() argument
891 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIGetClientDriverName()
914 DRICreateContextPriv(ScreenPtr pScreen, in DRICreateContextPriv() argument
917 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRICreateContextPriv()
923 return DRICreateContextPrivFromHandle(pScreen, *pHWContext, flags); in DRICreateContextPriv()
927 DRICreateContextPrivFromHandle(ScreenPtr pScreen, in DRICreateContextPrivFromHandle() argument
930 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRICreateContextPrivFromHandle()
944 pDRIContextPriv->pScreen = pScreen; in DRICreateContextPrivFromHandle()
950 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRICreateContextPrivFromHandle()
959 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRICreateContextPrivFromHandle()
976 pDRIPriv = DRI_SCREEN_PRIV(pDRIContextPriv->pScreen); in DRIDestroyContextPriv()
997 DRICreateDummyContext(ScreenPtr pScreen, Bool needCtxPriv) in DRICreateDummyContext() argument
999 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRICreateDummyContext()
1004 DRICreateContextPriv(pScreen, &pDRIPriv->pSAREA->dummy_context, 0))) { in DRICreateDummyContext()
1010 if (!pDRIPriv->pDriverInfo->CreateContext(pScreen, NULL, in DRICreateDummyContext()
1025 DRIDestroyDummyContext(ScreenPtr pScreen, Bool hasCtxPriv) in DRIDestroyDummyContext() argument
1027 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIDestroyDummyContext()
1035 pDRIPriv->pDriverInfo->DestroyContext(pDRIContextPriv->pScreen, in DRIDestroyDummyContext()
1046 DRICreateContext(ScreenPtr pScreen, VisualPtr visual, in DRICreateContext() argument
1049 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRICreateContext()
1054 if (!DRICreateDummyContext(pScreen, pDRIPriv->createDummyCtxPriv)) { in DRICreateContext()
1055 DRIDrvMsg(pScreen->myNum, X_INFO, in DRICreateContext()
1061 if (!(pDRIContextPriv = DRICreateContextPriv(pScreen, pHWContext, 0))) { in DRICreateContext()
1067 if (!((*pDRIPriv->pDriverInfo->CreateContext) (pScreen, NULL, in DRICreateContext()
1084 DRIDestroyContext(ScreenPtr pScreen, XID context) in DRIDestroyContext() argument
1099 pDRIPriv = DRI_SCREEN_PRIV(pDRIContextPriv->pScreen); in DRIContextPrivDelete()
1102 pDRIPriv->pDriverInfo->DestroyContext(pDRIContextPriv->pScreen, in DRIContextPrivDelete()
1117 DRIClipNotifyAllDrawables(ScreenPtr pScreen) in DRIClipNotifyAllDrawables() argument
1120 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIClipNotifyAllDrawables()
1128 DRITransitionToSharedBuffers(ScreenPtr pScreen) in DRITransitionToSharedBuffers() argument
1130 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRITransitionToSharedBuffers()
1133 DRIClipNotifyAllDrawables(pScreen); in DRITransitionToSharedBuffers()
1136 pDRIInfo->TransitionSingleToMulti3D(pScreen); in DRITransitionToSharedBuffers()
1140 DRITransitionToPrivateBuffers(ScreenPtr pScreen) in DRITransitionToPrivateBuffers() argument
1142 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRITransitionToPrivateBuffers()
1145 DRIClipNotifyAllDrawables(pScreen); in DRITransitionToPrivateBuffers()
1148 pDRIInfo->TransitionMultiToSingle3D(pScreen); in DRITransitionToPrivateBuffers()
1152 DRITransitionTo3d(ScreenPtr pScreen) in DRITransitionTo3d() argument
1154 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRITransitionTo3d()
1157 DRIClipNotifyAllDrawables(pScreen); in DRITransitionTo3d()
1160 pDRIInfo->TransitionTo3d(pScreen); in DRITransitionTo3d()
1164 DRITransitionTo2d(ScreenPtr pScreen) in DRITransitionTo2d() argument
1166 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRITransitionTo2d()
1169 DRIClipNotifyAllDrawables(pScreen); in DRITransitionTo2d()
1172 pDRIInfo->TransitionTo2d(pScreen); in DRITransitionTo2d()
1181 ScreenPtr pScreen = pWin->drawable.pScreen; in DRIDCNTreeTraversal() local
1182 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIDCNTreeTraversal()
1204 DRIDriverClipNotify(ScreenPtr pScreen) in DRIDriverClipNotify() argument
1206 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIDriverClipNotify()
1214 TraverseTree(pScreen->root, DRIDCNTreeTraversal, in DRIDriverClipNotify()
1218 pDRIInfo->ClipNotify(pScreen, pDRIWindows, pDRIPriv->nrWindows); in DRIDriverClipNotify()
1225 DRIIncreaseNumberVisible(ScreenPtr pScreen) in DRIIncreaseNumberVisible() argument
1227 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIIncreaseNumberVisible()
1231 DRITransitionTo3d(pScreen); in DRIIncreaseNumberVisible()
1234 DRITransitionToSharedBuffers(pScreen); in DRIIncreaseNumberVisible()
1240 DRIDriverClipNotify(pScreen); in DRIIncreaseNumberVisible()
1244 DRIDecreaseNumberVisible(ScreenPtr pScreen) in DRIDecreaseNumberVisible() argument
1246 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIDecreaseNumberVisible()
1250 DRITransitionTo2d(pScreen); in DRIDecreaseNumberVisible()
1253 DRITransitionToPrivateBuffers(pScreen); in DRIDecreaseNumberVisible()
1259 DRIDriverClipNotify(pScreen); in DRIDecreaseNumberVisible()
1263 DRICreateDrawable(ScreenPtr pScreen, ClientPtr client, DrawablePtr pDrawable, in DRICreateDrawable() argument
1266 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRICreateDrawable()
1294 pDRIDrawablePriv->pScreen = pScreen; in DRICreateDrawable()
1305 DRIIncreaseNumberVisible(pScreen); in DRICreateDrawable()
1334 ScreenPtr pScreen; in DRIDrawablePrivDestroy() local
1340 pScreen = pWin->drawable.pScreen; in DRIDrawablePrivDestroy()
1341 pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIDrawablePrivDestroy()
1355 DRIDecreaseNumberVisible(pScreen); in DRIDrawablePrivDestroy()
1377 DRIDestroyDrawable(ScreenPtr pScreen, ClientPtr client, DrawablePtr pDrawable) in DRIDestroyDrawable() argument
1421 DRIGetDrawableInfo(ScreenPtr pScreen, in DRIGetDrawableInfo() argument
1435 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIGetDrawableInfo()
1559 if (x1 > pScreen->width) in DRIGetDrawableInfo()
1560 x1 = pScreen->width; in DRIGetDrawableInfo()
1561 if (y1 > pScreen->height) in DRIGetDrawableInfo()
1562 y1 = pScreen->height; in DRIGetDrawableInfo()
1598 DRIGetDeviceInfo(ScreenPtr pScreen, in DRIGetDeviceInfo() argument
1604 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIGetDeviceInfo()
1655 ScreenPtr pScreen = screenInfo.screens[i]; in DRIWakeupHandler() local
1656 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIWakeupHandler()
1659 (*pDRIPriv->pDriverInfo->wrap.WakeupHandler) (pScreen, result); in DRIWakeupHandler()
1669 ScreenPtr pScreen = screenInfo.screens[i]; in DRIBlockHandler() local
1670 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIBlockHandler()
1673 (*pDRIPriv->pDriverInfo->wrap.BlockHandler) (pScreen, pTimeout); in DRIBlockHandler()
1678 DRIDoWakeupHandler(ScreenPtr pScreen, int result) in DRIDoWakeupHandler() argument
1680 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIDoWakeupHandler()
1682 DRILock(pScreen, 0); in DRIDoWakeupHandler()
1685 (*pDRIPriv->pDriverInfo->SwapContext) (pScreen, in DRIDoWakeupHandler()
1695 DRIDoBlockHandler(ScreenPtr pScreen, void *timeout) in DRIDoBlockHandler() argument
1697 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIDoBlockHandler()
1701 (*pDRIPriv->pDriverInfo->SwapContext) (pScreen, in DRIDoBlockHandler()
1713 DRIUnlock(pScreen); in DRIDoBlockHandler()
1721 ScreenPtr pScreen = newContext->pScreen; in DRISwapContext() local
1722 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRISwapContext()
1733 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRISwapContext()
1741 DRIDrvMsg(pScreen->myNum, X_INFO, in DRISwapContext()
1747 DRIDrvMsg(pScreen->myNum, X_INFO, in DRISwapContext()
1758 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRISwapContext()
1817 (*pDRIPriv->pDriverInfo->SwapContext) (pScreen, in DRISwapContext()
1857 (*pDRIPriv->pDriverInfo->SwapContext) (pScreen, in DRISwapContext()
1873 ScreenPtr pScreen = pWin->drawable.pScreen; in DRIWindowExposures() local
1874 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIWindowExposures()
1886 pScreen->WindowExposures = pDRIPriv->wrap.WindowExposures; in DRIWindowExposures()
1889 (*pScreen->WindowExposures) (pWin, prgn); in DRIWindowExposures()
1892 pDRIPriv->wrap.WindowExposures = pScreen->WindowExposures; in DRIWindowExposures()
1893 pScreen->WindowExposures = DRIWindowExposures; in DRIWindowExposures()
1903 ScreenPtr pScreen = pWin->drawable.pScreen; in DRITreeTraversal() local
1904 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRITreeTraversal()
1922 ScreenPtr pScreen = pWin->drawable.pScreen; in DRIDestroyWindow() local
1923 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIDestroyWindow()
1931 pScreen->DestroyWindow = pDRIPriv->DestroyWindow; in DRIDestroyWindow()
1934 retval = (*pScreen->DestroyWindow) (pWin); in DRIDestroyWindow()
1937 pDRIPriv->DestroyWindow = pScreen->DestroyWindow; in DRIDestroyWindow()
1938 pScreen->DestroyWindow = DRIDestroyWindow; in DRIDestroyWindow()
1947 ScreenPtr pScreen = pWin->drawable.pScreen; in DRICopyWindow() local
1948 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRICopyWindow()
1977 pScreen->CopyWindow = pDRIPriv->wrap.CopyWindow; in DRICopyWindow()
1980 (*pScreen->CopyWindow) (pWin, ptOldOrg, prgnSrc); in DRICopyWindow()
1983 pDRIPriv->wrap.CopyWindow = pScreen->CopyWindow; in DRICopyWindow()
1984 pScreen->CopyWindow = DRICopyWindow; in DRICopyWindow()
2048 DRILockTree(ScreenPtr pScreen) in DRILockTree() argument
2050 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRILockTree()
2057 (*pDRIPriv->pDriverInfo->SwapContext) (pScreen, in DRILockTree()
2066 DRIUnlock(pScreen); in DRILockTree()
2075 DRILock(pScreen, DRM_LOCK_QUIESCENT | DRM_LOCK_FLUSH_ALL); in DRILockTree()
2080 (*pDRIPriv->pDriverInfo->SwapContext) (pScreen, in DRILockTree()
2092 ScreenPtr pScreen = pWin->drawable.pScreen; in DRIClipNotify() local
2093 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIClipNotify()
2103 DRILockTree(pScreen); in DRIClipNotify()
2108 DRIIncreaseNumberVisible(pScreen); in DRIClipNotify()
2110 DRIDecreaseNumberVisible(pScreen); in DRIClipNotify()
2112 DRIDriverClipNotify(pScreen); in DRIClipNotify()
2128 pScreen->ClipNotify = pDRIPriv->wrap.ClipNotify; in DRIClipNotify()
2131 (*pScreen->ClipNotify) (pWin, dx, dy); in DRIClipNotify()
2134 pDRIPriv->wrap.ClipNotify = pScreen->ClipNotify; in DRIClipNotify()
2135 pScreen->ClipNotify = DRIClipNotify; in DRIClipNotify()
2142 ScreenPtr pScreen = pWin->drawable.pScreen; in DRIGetDrawableIndex() local
2143 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIGetDrawableIndex()
2158 DRIGetDrawableStamp(ScreenPtr pScreen, CARD32 drawable_index) in DRIGetDrawableStamp() argument
2160 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIGetDrawableStamp()
2166 DRIPrintDrawableLock(ScreenPtr pScreen, char *msg) in DRIPrintDrawableLock() argument
2168 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIPrintDrawableLock()
2174 DRILock(ScreenPtr pScreen, int flags) in DRILock() argument
2176 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRILock()
2187 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRILock()
2197 DRIUnlock(ScreenPtr pScreen) in DRIUnlock() argument
2199 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIUnlock()
2206 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRIUnlock()
2214 DRIDrvMsg(pScreen->myNum, X_ERROR, in DRIUnlock()
2223 DRIGetSAREAPrivate(ScreenPtr pScreen) in DRIGetSAREAPrivate() argument
2225 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIGetSAREAPrivate()
2234 DRIGetContext(ScreenPtr pScreen) in DRIGetContext() argument
2236 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIGetContext()
2245 DRIGetTexOffsetFuncs(ScreenPtr pScreen, in DRIGetTexOffsetFuncs() argument
2249 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIGetTexOffsetFuncs()
2263 DRIGetWrappedFuncs(ScreenPtr pScreen) in DRIGetWrappedFuncs() argument
2265 return &(DRI_SCREEN_PRIV(pScreen)->wrap); in DRIGetWrappedFuncs()
2289 ScreenPtr pScreen = xf86ScrnToScreen(pScrn); in DRIAdjustFrame() local
2290 DRIScreenPrivPtr pDRIPriv = DRI_SCREEN_PRIV(pScreen); in DRIAdjustFrame()
2317 pScreen->SetCursorPosition(inputInfo.pointer, pScreen, px, py, TRUE); in DRIAdjustFrame()
2344 DRIMoveBuffersHelper(ScreenPtr pScreen, in DRIMoveBuffersHelper() argument