Home
last modified time | relevance | path

Searched refs:hRgn (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinwindow.c72 pWinPriv->hRgn = NULL; in winCreateWindowRootless()
97 if (pWinPriv->hRgn != NULL) { in winDestroyWindowRootless()
98 DeleteObject(pWinPriv->hRgn); in winDestroyWindowRootless()
99 pWinPriv->hRgn = NULL; in winDestroyWindowRootless()
176 if (pWinPriv->hRgn != NULL) { in winUnmapWindowRootless()
177 DeleteObject(pWinPriv->hRgn); in winUnmapWindowRootless()
178 pWinPriv->hRgn = NULL; in winUnmapWindowRootless()
243 HRGN hRgn = *(HRGN *) data; in winAddRgn() local
270 if (pWinPriv->hRgn) { in winAddRgn()
271 if (CombineRgn(hRgnWin, hRgnWin, pWinPriv->hRgn, RGN_AND) in winAddRgn()
[all …]
H A Dwinmultiwindowshape.c72 winGetWindowPriv(pWin)->hRgn, TRUE); in winUpdateRgnMultiWindow()
75 winGetWindowPriv(pWin)->hRgn = NULL; in winUpdateRgnMultiWindow()
88 HRGN hRgn, hRgnRect; in winReshapeMultiWindow() local
109 if (pWinPriv->hRgn != NULL) { in winReshapeMultiWindow()
110 DeleteObject(pWinPriv->hRgn); in winReshapeMultiWindow()
111 pWinPriv->hRgn = NULL; in winReshapeMultiWindow()
155 hRgn = CreateRectRgn(0, 0, rcWindow.right, iOffsetY); in winReshapeMultiWindow()
156 if (hRgn == NULL) { in winReshapeMultiWindow()
183 if (CombineRgn(hRgn, hRgn, hRgnRect, RGN_OR) == ERROR) { in winReshapeMultiWindow()
193 pWinPriv->hRgn = hRgn; in winReshapeMultiWindow()
H A Dwinwin32rootless.c139 HRGN hRgn, hRgnRect; in winMWExtWMCreateRgnFromRegion() local
147 hRgn = CreateRectRgn(0, 0, 0, 0); in winMWExtWMCreateRgnFromRegion()
148 if (hRgn == NULL) { in winMWExtWMCreateRgnFromRegion()
166 if (CombineRgn(hRgn, hRgn, hRgnRect, RGN_OR) == ERROR) { in winMWExtWMCreateRgnFromRegion()
175 return hRgn; in winMWExtWMCreateRgnFromRegion()
559 HRGN hRgn, hRgnWindow, hRgnClient; in winMWExtWMReshapeFrame() local
566 hRgn = winMWExtWMCreateRgnFromRegion(pShape); in winMWExtWMReshapeFrame()
572 OffsetRgn(hRgn, rcClient.left - rcWindow.left, rcClient.top - rcWindow.top); in winMWExtWMReshapeFrame()
578 CombineRgn(hRgn, hRgnWindow, hRgn, RGN_OR); in winMWExtWMReshapeFrame()
580 SetWindowRgn(pRLWinPriv->hWnd, hRgn, TRUE); in winMWExtWMReshapeFrame()
H A Dwinwindow.h77 HRGN hRgn; member
H A Dwinmultiwindowwindow.c117 pWinPriv->hRgn = NULL; in winCreateWindowMultiWindow()