diff options
author | marha <marha@users.sourceforge.net> | 2010-09-20 09:22:54 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2010-09-20 09:22:54 +0000 |
commit | 97aaa22fb796662afd3ad4052d4f7d1c5945bb70 (patch) | |
tree | ba9fc06904f535fdda4336be7dda9ee180791914 /xorg-server/hw/xwin/glx/indirect.c | |
parent | 9cf4320c9d18406a570d4472cbf1fe3ceaeaf555 (diff) | |
download | vcxsrv-97aaa22fb796662afd3ad4052d4f7d1c5945bb70.tar.gz vcxsrv-97aaa22fb796662afd3ad4052d4f7d1c5945bb70.tar.bz2 vcxsrv-97aaa22fb796662afd3ad4052d4f7d1c5945bb70.zip |
opengl window was not always created/moved to the correct place
Diffstat (limited to 'xorg-server/hw/xwin/glx/indirect.c')
-rw-r--r-- | xorg-server/hw/xwin/glx/indirect.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/xorg-server/hw/xwin/glx/indirect.c b/xorg-server/hw/xwin/glx/indirect.c index 516cb6af0..6dd00c483 100644 --- a/xorg-server/hw/xwin/glx/indirect.c +++ b/xorg-server/hw/xwin/glx/indirect.c @@ -875,6 +875,7 @@ glxWinPositionWindow(WindowPtr pWin, int x, int y) pWin->drawable.width,
pWin->drawable.height,
FALSE);
+ winDebug("Move window %x, %x, %d, %d, %d, %d\n",pWinPriv->hWnd,GetParent(pWinPriv->hWnd), pWin->drawable.x, pWin->drawable.y, pWin->drawable.width, pWin->drawable.height);
}
return result;
}
|