Lines Matching refs:dmxScreen

69     DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum];  in dmxBECreateColormap()  local
75 pCmapPriv->cmap = XCreateColormap(dmxScreen->beDisplay, in dmxBECreateColormap()
76 dmxScreen->scrnWin, in dmxBECreateColormap()
94 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxCreateColormap() local
100 if (dmxScreen->beDisplay) { in dmxCreateColormap()
105 DMX_UNWRAP(CreateColormap, dmxScreen, pScreen); in dmxCreateColormap()
108 DMX_WRAP(CreateColormap, dmxCreateColormap, dmxScreen, pScreen); in dmxCreateColormap()
118 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxBEFreeColormap() local
122 XFreeColormap(dmxScreen->beDisplay, pCmapPriv->cmap); in dmxBEFreeColormap()
136 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxDestroyColormap() local
139 if (dmxScreen->beDisplay) in dmxDestroyColormap()
144 DMX_UNWRAP(DestroyColormap, dmxScreen, pScreen); in dmxDestroyColormap()
147 DMX_WRAP(DestroyColormap, dmxDestroyColormap, dmxScreen, pScreen); in dmxDestroyColormap()
156 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxInstallColormap() local
159 DMX_UNWRAP(InstallColormap, dmxScreen, pScreen); in dmxInstallColormap()
162 DMX_WRAP(InstallColormap, dmxInstallColormap, dmxScreen, pScreen); in dmxInstallColormap()
164 if (dmxScreen->beDisplay) { in dmxInstallColormap()
165 XInstallColormap(dmxScreen->beDisplay, pCmapPriv->cmap); in dmxInstallColormap()
166 dmxSync(dmxScreen, FALSE); in dmxInstallColormap()
176 DMXScreenInfo *dmxScreen = &dmxScreens[pScreen->myNum]; in dmxStoreColors() local
179 if (dmxScreen->beDisplay && (pColormap->pVisual->class & DynamicClass)) { in dmxStoreColors()
192 XStoreColors(dmxScreen->beDisplay, pCmapPriv->cmap, color, ndef); in dmxStoreColors()
205 XStoreColor(dmxScreen->beDisplay, pCmapPriv->cmap, &c); in dmxStoreColors()
208 dmxSync(dmxScreen, FALSE); in dmxStoreColors()
211 DMX_UNWRAP(StoreColors, dmxScreen, pScreen); in dmxStoreColors()
214 DMX_WRAP(StoreColors, dmxStoreColors, dmxScreen, pScreen); in dmxStoreColors()