Lines Matching refs:pScreenPriv
76 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()
120 if (pScreenPriv == NULL) in exaDDXDriverInit()
123 pScreenPriv->options = xnfalloc(sizeof(EXAOptions)); in exaDDXDriverInit()
124 memcpy(pScreenPriv->options, EXAOptions, sizeof(EXAOptions)); in exaDDXDriverInit()
125 xf86ProcessOptions(pScrn->scrnIndex, pScrn->options, pScreenPriv->options); in exaDDXDriverInit()
135 heuristicName = xf86GetOptValString(pScreenPriv->options, in exaDDXDriverInit()
153 xf86ReturnOptValBool(pScreenPriv->options, in exaDDXDriverInit()
157 if (xf86ReturnOptValBool(pScreenPriv->options, EXAOPT_NO_COMPOSITE, FALSE)) { in exaDDXDriverInit()
165 if (xf86ReturnOptValBool(pScreenPriv->options, EXAOPT_NO_UTS, FALSE)) { in exaDDXDriverInit()
170 if (xf86ReturnOptValBool(pScreenPriv->options, EXAOPT_NO_DFS, FALSE)) { in exaDDXDriverInit()
176 dixSetPrivate(&pScreen->devPrivates, exaXorgScreenPrivateKey, pScreenPriv); in exaDDXDriverInit()
178 pScreenPriv->SavedEnableDisableFBAccess = pScrn->EnableDisableFBAccess; in exaDDXDriverInit()
181 pScreenPriv->SavedCloseScreen = pScreen->CloseScreen; in exaDDXDriverInit()