Home
last modified time | relevance | path

Searched refs:winRec (Results 1 – 7 of 7) sorted by relevance

/OK3568_Linux_fs/external/xserver/miext/rootless/
H A DrootlessWindow.c84 RootlessWindowRec *winRec; in RootlessNativeWindowStateChanged() local
89 winRec = WINREC(pWin); in RootlessNativeWindowStateChanged()
90 if (winRec == NULL) in RootlessNativeWindowStateChanged()
93 winRec->is_offscreen = ((state & XP_WINDOW_STATE_OFFSCREEN) != 0); in RootlessNativeWindowStateChanged()
94 winRec->is_obscured = ((state & XP_WINDOW_STATE_OBSCURED) != 0); in RootlessNativeWindowStateChanged()
95 pWin->unhittable = winRec->is_offscreen; in RootlessNativeWindowStateChanged()
106 RootlessWindowRec *winRec; in RootlessNativeWindowMoved() local
108 winRec = WINREC(pWin); in RootlessNativeWindowMoved()
110 if (xp_get_window_bounds(MAKE_WINDOW_ID(winRec->wid), &bounds) != Success) in RootlessNativeWindowMoved()
183 RootlessDestroyFrame(WindowPtr pWin, RootlessWindowPtr winRec) in RootlessDestroyFrame() argument
[all …]
H A DrootlessCommon.c148 RootlessWindowRec *winRec; in RootlessStartDrawing() local
153 winRec = WINREC(top); in RootlessStartDrawing()
154 if (winRec == NULL) in RootlessStartDrawing()
158 if (!winRec->is_drawing) { in RootlessStartDrawing()
161 SCREENREC(pScreen)->imp->StartDrawing(winRec->wid, &winRec->pixelData, in RootlessStartDrawing()
162 &winRec->bytesPerRow); in RootlessStartDrawing()
164 winRec->pixmap = in RootlessStartDrawing()
165 GetScratchPixmapHeader(pScreen, winRec->width, winRec->height, in RootlessStartDrawing()
168 winRec->bytesPerRow, winRec->pixelData); in RootlessStartDrawing()
169 SetPixmapBaseToScreen(winRec->pixmap, in RootlessStartDrawing()
[all …]
H A DrootlessScreen.c170 RootlessWindowRec *winRec; in RootlessGetImage() local
180 winRec = WINREC(TopLevelParent((WindowPtr) pDrawable)); in RootlessGetImage()
181 if (winRec == NULL) in RootlessGetImage()
194 x0 = max(x0, winRec->x); in RootlessGetImage()
195 y0 = max(y0, winRec->y); in RootlessGetImage()
196 x1 = min(x1, winRec->x + winRec->width); in RootlessGetImage()
197 y1 = min(y1, winRec->y + winRec->height); in RootlessGetImage()
H A DrootlessGC.c235 RootlessWindowRec *winRec; in canAccelBlit() local
252 winRec = WINREC(pTop); in canAccelBlit()
253 if (winRec == NULL) in canAccelBlit()
256 return winRec; in canAccelBlit()
/OK3568_Linux_fs/external/xserver/hw/xquartz/xpr/
H A DxprFrame.c277 RootlessWindowRec * winRec; in xprRestackFrame() local
292 winRec = x_hash_table_lookup(window_hash, wid, NULL); in xprRestackFrame()
295 if (winRec) { in xprRestackFrame()
297 wc.window_level = normal_window_levels[winRec->level]; in xprRestackFrame()
301 wc.window_level = rooted_window_levels[winRec->level]; in xprRestackFrame()
508 RootlessWindowRec *winRec __block; in xprGetXWindow()
510 winRec = in xprGetXWindow()
515 return winRec != NULL ? winRec->win : NULL; in xprGetXWindow()
553 RootlessWindowRec *winRec = WINREC(pWin); in xprHideWindows() local
555 if (winRec != NULL) { in xprHideWindows()
[all …]
H A DxprAppleWM.c51 RootlessWindowRec *winRec; in xprSetWindowLevel() local
64 winRec = WINREC(pWin); in xprSetWindowLevel()
66 if (!winRec) in xprSetWindowLevel()
80 winRec->level = level; in xprSetWindowLevel()
/OK3568_Linux_fs/external/xserver/
H A DChangeLog107563 RootlessDestroyFrame (pRoot, winRec);
139980 SCREENREC(pScreen)->imp->DoReorderWindow(winRec) - > xprDoReorderWindow ->