Lines Matching refs:pScreen

43 winRandRGetInfo(ScreenPtr pScreen, Rotation * pRotations)  in winRandRGetInfo()  argument
48 pRRScrPriv = rrGetScrPriv(pScreen); in winRandRGetInfo()
70 snprintf(name, sizeof(name), "%dx%d", pScreen->width, pScreen->height); in winRandRGetInfo()
72 modeInfo.width = pScreen->width; in winRandRGetInfo()
73 modeInfo.height = pScreen->height; in winRandRGetInfo()
74 modeInfo.hTotal = pScreen->width; in winRandRGetInfo()
75 modeInfo.vTotal = pScreen->height; in winRandRGetInfo()
94 winDoRandRScreenSetSize(ScreenPtr pScreen, in winDoRandRScreenSetSize() argument
98 winScreenPriv(pScreen); in winDoRandRScreenSetSize()
100 WindowPtr pRoot = pScreen->root; in winDoRandRScreenSetSize()
103 if ((pScreen->width == width) && (pScreen->height == height) && in winDoRandRScreenSetSize()
104 (pScreen->mmWidth == mmWidth) && (pScreen->mmHeight == mmHeight)) in winDoRandRScreenSetSize()
108 SetRootClip(pScreen, ROOT_CLIP_NONE); in winDoRandRScreenSetSize()
115 (*pScreenPriv->pwinFreeFB) (pScreen); in winDoRandRScreenSetSize()
116 if (!(*pScreenPriv->pwinAllocateFB) (pScreen)) { in winDoRandRScreenSetSize()
120 pScreen->width = width; in winDoRandRScreenSetSize()
121 pScreen->height = height; in winDoRandRScreenSetSize()
122 pScreen->mmWidth = mmWidth; in winDoRandRScreenSetSize()
123 pScreen->mmHeight = mmHeight; in winDoRandRScreenSetSize()
126 winUpdateFBPointer(pScreen, pScreenInfo->pfb); in winDoRandRScreenSetSize()
134 SetRootClip(pScreen, ROOT_CLIP_FULL); in winDoRandRScreenSetSize()
137 pScreen->PaintWindow(pRoot, &pRoot->borderClip, PW_BACKGROUND); in winDoRandRScreenSetSize()
140 RRScreenSizeNotify(pScreen); in winDoRandRScreenSetSize()
148 winRandRScreenSetSize(ScreenPtr pScreen, in winRandRScreenSetSize() argument
152 winScreenPriv(pScreen); in winRandRScreenSetSize()
184 winDoRandRScreenSetSize(pScreen, width, height, mmWidth, mmHeight); in winRandRScreenSetSize()
226 winRandRInit(ScreenPtr pScreen) in winRandRInit() argument
232 if (!RRScreenInit(pScreen)) { in winRandRInit()
238 pRRScrPriv = rrGetScrPriv(pScreen); in winRandRInit()
250 crtc = RRCrtcCreate(pScreen, NULL); in winRandRInit()
256 output = RROutputCreate(pScreen, "default", 7, NULL); in winRandRInit()
262 RROutputSetSubpixelOrder(output, PictureGetSubpixelOrder(pScreen)); in winRandRInit()
283 RRScreenSetSizeRange(pScreen, 0, 0, 32768, 32768); in winRandRInit()