Bug #7120: Multimonitor (non-Xinerama) support for xwin servers.

(Tom Whittock)
This commit is contained in:
Adam Jackson 2006-06-08 17:49:02 -04:00
parent d42cf4a2a4
commit 576e6fb112

View File

@ -58,6 +58,8 @@ winCreateBoundingWindowFullScreen (ScreenPtr pScreen)
{
winScreenPriv(pScreen);
winScreenInfo *pScreenInfo = pScreenPriv->pScreenInfo;
int iX = pScreenInfo->dwInitialX;
int iY = pScreenInfo->dwInitialY;
int iWidth = pScreenInfo->dwWidth;
int iHeight = pScreenInfo->dwHeight;
HWND *phwnd = &pScreenPriv->hwndScreen;
@ -99,8 +101,8 @@ winCreateBoundingWindowFullScreen (ScreenPtr pScreen)
WINDOW_CLASS, /* Class name */
szTitle, /* Window name */
WS_POPUP,
0, /* Horizontal position */
0, /* Vertical position */
iX, /* Horizontal position */
iY, /* Vertical position */
iWidth, /* Right edge */
iHeight, /* Bottom edge */
(HWND) NULL, /* No parent or owner window */