Lines Matching refs:pScreen
68 ScreenPtr pScreen = pColormap->pScreen; in dmxBECreateColormap() local
69 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxBECreateColormap()
72 Visual *visual = dmxLookupVisual(pScreen, pVisual); in dmxBECreateColormap()
93 ScreenPtr pScreen = pColormap->pScreen; in dmxCreateColormap() local
94 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxCreateColormap()
105 DMX_UNWRAP(CreateColormap, dmxScreen, pScreen); in dmxCreateColormap()
106 if (pScreen->CreateColormap) in dmxCreateColormap()
107 ret = pScreen->CreateColormap(pColormap); in dmxCreateColormap()
108 DMX_WRAP(CreateColormap, dmxCreateColormap, dmxScreen, pScreen); in dmxCreateColormap()
117 ScreenPtr pScreen = pColormap->pScreen; in dmxBEFreeColormap() local
118 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxBEFreeColormap()
135 ScreenPtr pScreen = pColormap->pScreen; in dmxDestroyColormap() local
136 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxDestroyColormap()
144 DMX_UNWRAP(DestroyColormap, dmxScreen, pScreen); in dmxDestroyColormap()
145 if (pScreen->DestroyColormap) in dmxDestroyColormap()
146 pScreen->DestroyColormap(pColormap); in dmxDestroyColormap()
147 DMX_WRAP(DestroyColormap, dmxDestroyColormap, dmxScreen, pScreen); in dmxDestroyColormap()
155 ScreenPtr pScreen = pColormap->pScreen; in dmxInstallColormap() local
156 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxInstallColormap()
159 DMX_UNWRAP(InstallColormap, dmxScreen, pScreen); in dmxInstallColormap()
160 if (pScreen->InstallColormap) in dmxInstallColormap()
161 pScreen->InstallColormap(pColormap); in dmxInstallColormap()
162 DMX_WRAP(InstallColormap, dmxInstallColormap, dmxScreen, pScreen); in dmxInstallColormap()
175 ScreenPtr pScreen = pColormap->pScreen; in dmxStoreColors() local
176 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxStoreColors()
211 DMX_UNWRAP(StoreColors, dmxScreen, pScreen); in dmxStoreColors()
212 if (pScreen->StoreColors) in dmxStoreColors()
213 pScreen->StoreColors(pColormap, ndef, pdef); in dmxStoreColors()
214 DMX_WRAP(StoreColors, dmxStoreColors, dmxScreen, pScreen); in dmxStoreColors()
219 dmxCreateDefColormap(ScreenPtr pScreen) in dmxCreateDefColormap() argument
221 return miCreateDefColormap(pScreen); in dmxCreateDefColormap()