Home
last modified time | relevance | path

Searched refs:pScreenPriv (Results 1 – 25 of 53) sorted by relevance

123

/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinshadgdi.c99 hbmp = CreateCompatibleBitmap(pScreenPriv->hdcScreen, 1, 1); in winQueryScreenDIBFormat()
110 if (!GetDIBits(pScreenPriv->hdcScreen, in winQueryScreenDIBFormat()
126 if (!GetDIBits(pScreenPriv->hdcScreen, in winQueryScreenDIBFormat()
155 if (GetDeviceCaps(pScreenPriv->hdcScreen, RASTERCAPS) & RC_PALETTE) { in winQueryRGBBitsAndMasks()
160 pScreenPriv->dwBitsPerRGB = 8; in winQueryRGBBitsAndMasks()
161 pScreenPriv->dwRedMask = 0x0L; in winQueryRGBBitsAndMasks()
162 pScreenPriv->dwGreenMask = 0x0L; in winQueryRGBBitsAndMasks()
163 pScreenPriv->dwBlueMask = 0x0L; in winQueryRGBBitsAndMasks()
168 if (GetDeviceCaps(pScreenPriv->hdcScreen, PLANES) in winQueryRGBBitsAndMasks()
169 * GetDeviceCaps(pScreenPriv->hdcScreen, BITSPIXEL) == 24) { in winQueryRGBBitsAndMasks()
[all …]
H A Dwinshadddnl.c112 ddrval = IDirectDraw4_CreateSurface(pScreenPriv->pdd4, in winCreatePrimarySurfaceShadowDDNL()
114 &pScreenPriv->pddsPrimary4, NULL); in winCreatePrimarySurfaceShadowDDNL()
115 pScreenPriv->fRetryCreateSurface = FALSE; in winCreatePrimarySurfaceShadowDDNL()
119 pScreenPriv->fRetryCreateSurface = TRUE; in winCreatePrimarySurfaceShadowDDNL()
135 ddrval = IDirectDrawSurface4_SetClipper(pScreenPriv->pddsPrimary4, in winCreatePrimarySurfaceShadowDDNL()
136 pScreenPriv->pddcPrimary); in winCreatePrimarySurfaceShadowDDNL()
165 if (pScreenPriv->pddsPrimary4) { in winReleasePrimarySurfaceShadowDDNL()
170 IDirectDrawSurface4_SetClipper(pScreenPriv->pddsPrimary4, NULL); in winReleasePrimarySurfaceShadowDDNL()
175 IDirectDrawSurface4_Release(pScreenPriv->pddsPrimary4); in winReleasePrimarySurfaceShadowDDNL()
176 pScreenPriv->pddsPrimary4 = NULL; in winReleasePrimarySurfaceShadowDDNL()
[all …]
H A Dwincursor.c96 if ((pScreenPriv->hwndScreen == GetForegroundWindow()) in winPointerWarpCursor()
97 || pScreenPriv->pScreenInfo->fRootless in winPointerWarpCursor()
98 || pScreenPriv->pScreenInfo->fMultiWindow in winPointerWarpCursor()
101 GetClientRect(pScreenPriv->hwndScreen, &rcClient); in winPointerWarpCursor()
104 MapWindowPoints(pScreenPriv->hwndScreen, in winPointerWarpCursor()
166 pScreenPriv->cursor.sm_cx, pScreenPriv->cursor.sm_cy, in winLoadCursor()
177 if (pScreenPriv->cursor.sm_cx < pCursor->bits->width || in winLoadCursor()
178 pScreenPriv->cursor.sm_cy < pCursor->bits->height) { in winLoadCursor()
181 pScreenPriv->cursor.sm_cx, pScreenPriv->cursor.sm_cy, in winLoadCursor()
189 bits_to_bytes(pScreenPriv->cursor.sm_cx) * pScreenPriv->cursor.sm_cy; in winLoadCursor()
[all …]
H A Dwinscrinit.c87 winPrivScreenPtr pScreenPriv; in winScreenInit() local
103 pScreenPriv = winGetScreenPriv(pScreen); in winScreenInit()
110 pScreenPriv->pScreenInfo = pScreenInfo; in winScreenInit()
126 if (!(*pScreenPriv->pwinAdjustVideoMode) (pScreen)) { in winScreenInit()
178 if (!(*pScreenPriv->pwinCreateBoundingWindow) (pScreen)) { in winScreenInit()
184 hdc = GetDC(pScreenPriv->hwndScreen); in winScreenInit()
199 ReleaseDC(pScreenPriv->hwndScreen, hdc); in winScreenInit()
205 if (!((*pScreenPriv->pwinFinishScreenInit) (pScreen->myNum, pScreen, argc, argv))) { in winScreenInit()
209 pScreenPriv->pwinCloseScreen(pScreen); in winScreenInit()
246 result = pScreenPriv->pwinCreateScreenResources(pScreen); in winCreateScreenResources()
[all …]
H A Dwinmouse.c249 winScreenInfo *pScreenInfo = pScreenPriv->pScreenInfo; in winMouseButtonsHandle()
260 && pScreenPriv->iE3BCachedPress == 0 in winMouseButtonsHandle()
261 && !pScreenPriv->fE3BFakeButton2Sent) { in winMouseButtonsHandle()
268 pScreenPriv->iE3BCachedPress = iButton; in winMouseButtonsHandle()
274 SetTimer(pScreenPriv->hwndScreen, in winMouseButtonsHandle()
278 && pScreenPriv->iE3BCachedPress != 0 in winMouseButtonsHandle()
279 && pScreenPriv->iE3BCachedPress != iButton in winMouseButtonsHandle()
280 && !pScreenPriv->fE3BFakeButton2Sent) { in winMouseButtonsHandle()
287 KillTimer(pScreenPriv->hwndScreen, WIN_E3B_TIMER_ID); in winMouseButtonsHandle()
288 pScreenPriv->iE3BCachedPress = 0; in winMouseButtonsHandle()
[all …]
H A Dwintrayicon.c46 winInitNotifyIcon(winPrivScreenPtr pScreenPriv) in winInitNotifyIcon() argument
48 winScreenInfo *pScreenInfo = pScreenPriv->pScreenInfo; in winInitNotifyIcon()
52 nid.hWnd = pScreenPriv->hwndScreen; in winInitNotifyIcon()
59 pScreenPriv->hiconNotifyIcon = nid.hIcon; in winInitNotifyIcon()
77 winDeleteNotifyIcon(winPrivScreenPtr pScreenPriv) in winDeleteNotifyIcon() argument
79 winScreenInfo *pScreenInfo = pScreenPriv->pScreenInfo; in winDeleteNotifyIcon()
87 nid.hWnd = pScreenPriv->hwndScreen; in winDeleteNotifyIcon()
97 if (pScreenPriv->hiconNotifyIcon != NULL in winDeleteNotifyIcon()
98 && DestroyIcon(pScreenPriv->hiconNotifyIcon) == 0) { in winDeleteNotifyIcon()
101 pScreenPriv->hiconNotifyIcon = NULL; in winDeleteNotifyIcon()
[all …]
H A Dwinallpriv.c48 winPrivScreenPtr pScreenPriv; in winAllocatePrivates() local
61 pScreenPriv = malloc(sizeof(winPrivScreenRec)); in winAllocatePrivates()
62 if (!pScreenPriv) { in winAllocatePrivates()
68 ZeroMemory(pScreenPriv, sizeof(winPrivScreenRec)); in winAllocatePrivates()
71 pScreenPriv->fActive = TRUE; in winAllocatePrivates()
80 winSetScreenPriv(pScreen, pScreenPriv); in winAllocatePrivates()
H A Dwincmap.c105 *pmaps = pScreenPriv->pcmapInstalled->mid; in winListInstalledColormaps()
117 ColormapPtr oldpmap = pScreenPriv->pcmapInstalled; in winInstallColormap()
137 pScreenPriv->pcmapInstalled = pColormap; in winInstallColormap()
141 if (!((*pScreenPriv->pwinInstallColormap) (pColormap))) { in winInstallColormap()
150 pScreenPriv->pcmapInstalled = pColormap; in winInstallColormap()
158 ColormapPtr curpmap = pScreenPriv->pcmapInstalled; in winUninstallColormap()
171 pScreenPriv->pcmapInstalled = NULL; in winUninstallColormap()
226 if (!((pScreenPriv->pwinStoreColors) (pmap, ndef, pdefs))) { in winStoreColors()
286 if (!((*pScreenPriv->pwinCreateColormap) (pmap))) { in winCreateColormap()
303 if (!((*pScreenPriv->pwinDestroyColormap) (pColormap))) { in winDestroyColormap()
[all …]
H A Dwinwin32rootlesswndproc.c333 winPrivScreenPtr pScreenPriv = NULL; in winMWExtWMWindowProc() local
349 pScreenPriv = winGetScreenPriv(pScreen); in winMWExtWMWindowProc()
350 if (pScreenPriv) in winMWExtWMWindowProc()
351 pScreenInfo = pScreenPriv->pScreenInfo; in winMWExtWMWindowProc()
352 if (pScreenPriv) in winMWExtWMWindowProc()
353 hwndScreen = pScreenPriv->hwndScreen; in winMWExtWMWindowProc()
360 winDebug("\tpScreenPriv %p\n", pScreenPriv); in winMWExtWMWindowProc()
438 if (pScreenPriv == NULL || pScreenInfo->fIgnoreInput) in winMWExtWMWindowProc()
467 KillTimer(pScreenPriv->hwndScreen, WIN_POLLING_MOUSE_TIMER_ID); in winMWExtWMWindowProc()
491 if (pScreenPriv == NULL || pScreenInfo->fIgnoreInput) in winMWExtWMWindowProc()
[all …]
H A Dwindialogs.c226 winDisplayExitDialog(winPrivScreenPtr pScreenPriv) in winDisplayExitDialog() argument
236 if (pScreenPriv->pScreenInfo->fMultiWindow) in winDisplayExitDialog()
252 PostMessage(pScreenPriv->hwndScreen, WM_GIVEUP, 0, 0); in winDisplayExitDialog()
256 pScreenPriv->iConnectedClients = liveClients; in winDisplayExitDialog()
272 pScreenPriv->hwndScreen, in winDisplayExitDialog()
273 winExitDlgProc, (LPARAM) pScreenPriv); in winDisplayExitDialog()
370 winDisplayDepthChangeDialog(winPrivScreenPtr pScreenPriv) in winDisplayDepthChangeDialog() argument
390 pScreenPriv->hwndScreen, in winDisplayDepthChangeDialog()
392 (LPARAM) pScreenPriv); in winDisplayDepthChangeDialog()
401 ShowWindow(pScreenPriv->hwndScreen, SW_MINIMIZE); in winDisplayDepthChangeDialog()
[all …]
H A Dwinwin32rootlesswindow.c59 pScreenPriv->fRestacking = TRUE;
61 if (pScreenPriv->fWindowOrderChanged) {
96 pScreenPriv->fRestacking = FALSE;
97 pScreenPriv->fWindowOrderChanged = FALSE;
160 winPrivScreenPtr pScreenPriv = NULL; in winMWExtWMDecorateWindow() local
170 pScreenPriv = winGetScreenPriv(pScreen); in winMWExtWMDecorateWindow()
171 if (pScreenPriv) in winMWExtWMDecorateWindow()
172 pScreenInfo = pScreenPriv->pScreenInfo; in winMWExtWMDecorateWindow()
286 winSendMessageToWM(pScreenPriv->pWMInfo, &wmMsg); in winMWExtWMUpdateWindowDecoration()
363 pScreenPriv->fRestacking = TRUE; in winMWExtWMRestackWindows()
[all …]
/OK3568_Linux_fs/external/xserver/hw/kdrive/src/
H A Dkcmap.c36 ColormapPtr pCmap = pScreenPriv->pInstalledmap; in KdSetColormap()
42 if (!pScreenPriv->card->cfuncs->putColors) in KdSetColormap()
44 if (pScreenPriv->screen->fb.depth > KD_MAX_PSEUDO_DEPTH) in KdSetColormap()
47 if (!pScreenPriv->enabled) in KdSetColormap()
58 for (i = 0; i < (1 << pScreenPriv->screen->fb.depth); i++) in KdSetColormap()
61 QueryColors(pCmap, (1 << pScreenPriv->screen->fb.depth), pixels, colors, in KdSetColormap()
64 for (i = 0; i < (1 << pScreenPriv->screen->fb.depth); i++) { in KdSetColormap()
72 (*pScreenPriv->card->cfuncs->putColors) (pCmap->pScreen, in KdSetColormap()
73 (1 << pScreenPriv->screen->fb. in KdSetColormap()
87 if (!pScreenPriv->card->cfuncs->putColors) in KdEnableColormap()
[all …]
H A Dkdrive.c95 if (!pScreenPriv->enabled) in KdDisableScreen()
97 if (!pScreenPriv->closed) in KdDisableScreen()
100 if (!pScreenPriv->screen->dumb && pScreenPriv->card->cfuncs->disableAccel) in KdDisableScreen()
101 (*pScreenPriv->card->cfuncs->disableAccel) (pScreen); in KdDisableScreen()
102 pScreenPriv->enabled = FALSE; in KdDisableScreen()
154 if (pScreenPriv->enabled) in KdEnableScreen()
156 pScreenPriv->enabled = TRUE; in KdEnableScreen()
157 pScreenPriv->dpmsState = KD_DPMS_NORMAL; in KdEnableScreen()
158 pScreenPriv->card->selected = pScreenPriv->screen->mynum; in KdEnableScreen()
159 if (!pScreenPriv->screen->dumb && pScreenPriv->card->cfuncs->enableAccel) in KdEnableScreen()
[all …]
/OK3568_Linux_fs/external/xserver/hw/xfree86/common/
H A Dxf86cmap.c69 ((pScreenPriv->flags & CMAP_LOAD_EVEN_IF_OFFSCREEN) || \
70 xf86ScreenToScrn(pmap->pScreen)->vtSema || pScreenPriv->isDGAmode))
153 CMapScreenPtr pScreenPriv; in xf86HandleColormaps() local
172 if (!(pScreenPriv = malloc(sizeof(CMapScreenRec)))) { in xf86HandleColormaps()
178 dixSetPrivate(&pScreen->devPrivates, &CMapScreenKeyRec, pScreenPriv); in xf86HandleColormaps()
180 pScreenPriv->CloseScreen = pScreen->CloseScreen; in xf86HandleColormaps()
181 pScreenPriv->CreateColormap = pScreen->CreateColormap; in xf86HandleColormaps()
182 pScreenPriv->DestroyColormap = pScreen->DestroyColormap; in xf86HandleColormaps()
183 pScreenPriv->InstallColormap = pScreen->InstallColormap; in xf86HandleColormaps()
184 pScreenPriv->StoreColors = pScreen->StoreColors; in xf86HandleColormaps()
[all …]
H A Dxf86DGA.c133 DGAScreenPtr pScreenPriv; in DGAInit() local
145 pScreenPriv = DGA_GET_SCREEN_PRIV(pScreen); in DGAInit()
147 if (!pScreenPriv) { in DGAInit()
148 if (!(pScreenPriv = (DGAScreenPtr) malloc(sizeof(DGAScreenRec)))) in DGAInit()
150 dixSetPrivate(&pScreen->devPrivates, &DGAScreenKeyRec, pScreenPriv); in DGAInit()
151 pScreenPriv->CloseScreen = pScreen->CloseScreen; in DGAInit()
153 pScreenPriv->DestroyColormap = pScreen->DestroyColormap; in DGAInit()
155 pScreenPriv->InstallColormap = pScreen->InstallColormap; in DGAInit()
157 pScreenPriv->UninstallColormap = pScreen->UninstallColormap; in DGAInit()
161 pScreenPriv->pScrn = pScrn; in DGAInit()
[all …]
H A Dxf86xvmc.c64 xf86XvMCScreenPtr pScreenPriv = XF86XVMC_GET_PRIVATE(pContext->pScreen); in xf86XvMCCreateContext() local
69 return (*pScreenPriv->adaptors[pContext->adapt_num]->CreateContext) (pScrn, in xf86XvMCCreateContext()
78 xf86XvMCScreenPtr pScreenPriv = XF86XVMC_GET_PRIVATE(pContext->pScreen); in xf86XvMCDestroyContext() local
81 (*pScreenPriv->adaptors[pContext->adapt_num]->DestroyContext) (pScrn, in xf86XvMCDestroyContext()
89 xf86XvMCScreenPtr pScreenPriv = XF86XVMC_GET_PRIVATE(pContext->pScreen); in xf86XvMCCreateSurface() local
92 return (*pScreenPriv->adaptors[pContext->adapt_num]->CreateSurface) (pScrn, in xf86XvMCCreateSurface()
102 xf86XvMCScreenPtr pScreenPriv = XF86XVMC_GET_PRIVATE(pContext->pScreen); in xf86XvMCDestroySurface() local
105 (*pScreenPriv->adaptors[pContext->adapt_num]->DestroySurface) (pScrn, in xf86XvMCDestroySurface()
114 xf86XvMCScreenPtr pScreenPriv = XF86XVMC_GET_PRIVATE(pContext->pScreen); in xf86XvMCCreateSubpicture() local
117 return (*pScreenPriv->adaptors[pContext->adapt_num]-> in xf86XvMCCreateSubpicture()
[all …]
H A Dxf86VGAarbiterPriv.h48 #define WRAP_SCREEN(x,y) {pScreenPriv->x = pScreen->x; pScreen->x = y;}
50 #define UNWRAP_SCREEN(x) pScreen->x = pScreenPriv->x
61 #define WRAP_PICT(x,y) if (ps) {pScreenPriv->x = ps->x;\
64 #define UNWRAP_PICT(x) if (ps) {ps->x = pScreenPriv->x;}
72 #define WRAP_SCREEN_INFO(x,y) do {pScreenPriv->x = pScrn->x; pScrn->x = y;} while(0)
74 #define UNWRAP_SCREEN_INFO(x) pScrn->x = pScreenPriv->x
78 VGAarbiterScreenPtr pScreenPriv; \
82 pScreenPriv = dixLookupPrivate(&(pScreen)->devPrivates, \
84 PointPriv->spriteFuncs = pScreenPriv->miSprite; \
87 pScreenPriv->miSprite = PointPriv->spriteFuncs; \
[all …]
/OK3568_Linux_fs/external/xserver/mi/
H A Dmisprite.c158 miSpriteDisableDamage(ScreenPtr pScreen, miSpriteScreenPtr pScreenPriv) in miSpriteDisableDamage() argument
160 if (pScreenPriv->damageRegistered) { in miSpriteDisableDamage()
161 DamageUnregister(pScreenPriv->pDamage); in miSpriteDisableDamage()
162 pScreenPriv->damageRegistered = 0; in miSpriteDisableDamage()
167 miSpriteEnableDamage(ScreenPtr pScreen, miSpriteScreenPtr pScreenPriv) in miSpriteEnableDamage() argument
169 if (!pScreenPriv->damageRegistered) { in miSpriteEnableDamage()
170 pScreenPriv->damageRegistered = 1; in miSpriteEnableDamage()
172 pScreenPriv->pDamage); in miSpriteEnableDamage()
250 miSpriteRegisterBlockHandler(ScreenPtr pScreen, miSpriteScreenPtr pScreenPriv) in miSpriteRegisterBlockHandler() argument
252 if (!pScreenPriv->BlockHandler) { in miSpriteRegisterBlockHandler()
[all …]
H A Dmidispcur.c94 miDCScreenPtr pScreenPriv; in miDCInitialize() local
101 pScreenPriv = calloc(1, sizeof(miDCScreenRec)); in miDCInitialize()
102 if (!pScreenPriv) in miDCInitialize()
105 pScreenPriv->CloseScreen = pScreen->CloseScreen; in miDCInitialize()
108 dixSetPrivate(&pScreen->devPrivates, miDCScreenKey, pScreenPriv); in miDCInitialize()
111 free((void *) pScreenPriv); in miDCInitialize()
120 miDCScreenPtr pScreenPriv = dixLookupPrivate(&pScreen->devPrivates, miDCScreenKey); in miDCSwitchScreenCursor() local
122 if (pScreenPriv->sourceBits) in miDCSwitchScreenCursor()
123 (*pScreen->DestroyPixmap)(pScreenPriv->sourceBits); in miDCSwitchScreenCursor()
124 pScreenPriv->sourceBits = sourceBits; in miDCSwitchScreenCursor()
[all …]
H A Dmipointer.c84 #define SetupScreen(s) miPointerScreenPtr pScreenPriv = GetScreenPrivate(s)
120 miPointerScreenPtr pScreenPriv; in miPointerInitialize() local
128 pScreenPriv = malloc(sizeof(miPointerScreenRec)); in miPointerInitialize()
129 if (!pScreenPriv) in miPointerInitialize()
131 pScreenPriv->spriteFuncs = spriteFuncs; in miPointerInitialize()
132 pScreenPriv->screenFuncs = screenFuncs; in miPointerInitialize()
133 pScreenPriv->waitForUpdate = waitForUpdate; in miPointerInitialize()
134 pScreenPriv->showTransparent = FALSE; in miPointerInitialize()
135 pScreenPriv->CloseScreen = pScreen->CloseScreen; in miPointerInitialize()
137 dixSetPrivate(&pScreen->devPrivates, miPointerScreenKey, pScreenPriv); in miPointerInitialize()
[all …]
/OK3568_Linux_fs/external/xserver/hw/xfree86/exa/
H A Dexamodule.c76 ExaXorgScreenPrivPtr pScreenPriv = (ExaXorgScreenPrivPtr) in exaXorgCloseScreen() local
79 pScreen->CloseScreen = pScreenPriv->SavedCloseScreen; in exaXorgCloseScreen()
81 pScrn->EnableDisableFBAccess = pScreenPriv->SavedEnableDisableFBAccess; in exaXorgCloseScreen()
83 free(pScreenPriv->options); in exaXorgCloseScreen()
84 free(pScreenPriv); in exaXorgCloseScreen()
93 ExaXorgScreenPrivPtr pScreenPriv = (ExaXorgScreenPrivPtr) in exaXorgEnableDisableFBAccess() local
99 if (pScreenPriv->SavedEnableDisableFBAccess) in exaXorgEnableDisableFBAccess()
100 pScreenPriv->SavedEnableDisableFBAccess(pScrn, enable); in exaXorgEnableDisableFBAccess()
114 ExaXorgScreenPrivPtr pScreenPriv; in exaDDXDriverInit() local
119 pScreenPriv = calloc(1, sizeof(ExaXorgScreenPrivRec)); in exaDDXDriverInit()
[all …]
/OK3568_Linux_fs/external/xserver/Xext/
H A Dxvmc.c71 XvMCScreenPtr pScreenPriv = XVMC_GET_PRIVATE(pContext->pScreen); in XvMCDestroyContextRes() local
73 (*pScreenPriv->adaptors[pContext->adapt_num].DestroyContext) (pContext); in XvMCDestroyContextRes()
85 XvMCScreenPtr pScreenPriv = XVMC_GET_PRIVATE(pContext->pScreen); in XvMCDestroySurfaceRes() local
87 (*pScreenPriv->adaptors[pContext->adapt_num].DestroySurface) (pSurface); in XvMCDestroySurfaceRes()
100 XvMCScreenPtr pScreenPriv = XVMC_GET_PRIVATE(pContext->pScreen); in XvMCDestroySubpictureRes() local
102 (*pScreenPriv->adaptors[pContext->adapt_num].DestroySubpicture) (pSubpict); in XvMCDestroySubpictureRes()
133 XvMCScreenPtr pScreenPriv; in ProcXvMCListSurfaceTypes() local
148 if ((pScreenPriv = XVMC_GET_PRIVATE(pScreen))) { /* any this screen */ in ProcXvMCListSurfaceTypes()
149 for (i = 0; i < pScreenPriv->num_adaptors; i++) { in ProcXvMCListSurfaceTypes()
150 if (pPort->pAdaptor == pScreenPriv->adaptors[i].xv_adaptor) { in ProcXvMCListSurfaceTypes()
[all …]
/OK3568_Linux_fs/external/xserver/miext/sync/
H A Dmisync.c90 SyncScreenPrivPtr pScreenPriv = SYNC_SCREEN_PRIV(pScreen); in miSyncInitFence() local
103 pScreenPriv->funcs.CreateFence(pScreen, pFence, initially_triggered); in miSyncInitFence()
115 SyncScreenPrivPtr pScreenPriv = SYNC_SCREEN_PRIV(pScreen); in miSyncDestroyFence() local
125 pScreenPriv->funcs.DestroyFence(pScreen, pFence); in miSyncDestroyFence()
149 SyncScreenPrivPtr pScreenPriv = SYNC_SCREEN_PRIV(pScreen); in miSyncGetScreenFuncs() local
151 return &pScreenPriv->funcs; in miSyncGetScreenFuncs()
157 SyncScreenPrivPtr pScreenPriv = SYNC_SCREEN_PRIV(pScreen); in SyncCloseScreen() local
159 pScreen->CloseScreen = pScreenPriv->CloseScreen; in SyncCloseScreen()
167 SyncScreenPrivPtr pScreenPriv; in miSyncSetup() local
180 pScreenPriv = SYNC_SCREEN_PRIV(pScreen); in miSyncSetup()
[all …]
/OK3568_Linux_fs/external/xserver/hw/kdrive/ephyr/
H A Dephyr_draw.c59 KdScreenInfo *screen = pScreenPriv->screen; in ephyrPreparePipelinedAccess()
80 KdScreenInfo *screen = pScreenPriv->screen; in ephyrFinishPipelinedAccess()
98 KdScreenInfo *screen = pScreenPriv->screen; in ephyrPrepareSolid()
130 KdScreenInfo *screen = pScreenPriv->screen; in ephyrSolid()
146 KdScreenInfo *screen = pScreenPriv->screen; in ephyrDoneSolid()
166 KdScreenInfo *screen = pScreenPriv->screen; in ephyrPrepareCopy()
198 KdScreenInfo *screen = pScreenPriv->screen; in ephyrCopy()
215 KdScreenInfo *screen = pScreenPriv->screen; in ephyrDoneCopy()
252 KdScreenInfo *screen = pScreenPriv->screen; in ephyrPrepareComposite()
283 KdScreenInfo *screen = pScreenPriv->screen; in ephyrComposite()
[all …]
/OK3568_Linux_fs/external/xserver/fb/
H A Dfbscreen.c45 fbScreenPtr pScreenPriv = fbGetScreenPriv(pScreen); in fbCloseScreen() local
53 pScreen->CloseScreen = pScreenPriv->CloseScreen; in fbCloseScreen()
54 free(pScreenPriv); in fbCloseScreen()
114 fbScreenPtr pScreenPriv; in fbSetupScreen() local
122 pScreenPriv = calloc(1, sizeof(fbScreenRec)); in fbSetupScreen()
123 if (!pScreenPriv) in fbSetupScreen()
126 dixSetPrivate(&pScreen->devPrivates, fbScreenPrivKey, pScreenPriv); in fbSetupScreen()
179 fbScreenPtr pScreenPriv = fbGetScreenPriv(pScreen); in wfbFinishScreenInit() local
208 pScreenPriv->CloseScreen = pScreen->CloseScreen; in wfbFinishScreenInit()

123