diff options
author | marha <marha@users.sourceforge.net> | 2011-07-14 09:02:09 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-07-14 09:02:09 +0200 |
commit | d03a5f20114203fd00e0004659fd2617f4c03a32 (patch) | |
tree | 769d9c09953195385ac9c19aa31a1303b462d2d6 /xorg-server/hw/xwin/winmultiwindowwndproc.c | |
parent | 3b47b2c35227184c0eb6dcf6dee8b79c4f9d4474 (diff) | |
download | vcxsrv-d03a5f20114203fd00e0004659fd2617f4c03a32.tar.gz vcxsrv-d03a5f20114203fd00e0004659fd2617f4c03a32.tar.bz2 vcxsrv-d03a5f20114203fd00e0004659fd2617f4c03a32.zip |
mesa xserver git update 14 july 2011
Diffstat (limited to 'xorg-server/hw/xwin/winmultiwindowwndproc.c')
-rw-r--r-- | xorg-server/hw/xwin/winmultiwindowwndproc.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/xorg-server/hw/xwin/winmultiwindowwndproc.c b/xorg-server/hw/xwin/winmultiwindowwndproc.c index 1a3be78d5..fb1938b3a 100644 --- a/xorg-server/hw/xwin/winmultiwindowwndproc.c +++ b/xorg-server/hw/xwin/winmultiwindowwndproc.c @@ -472,6 +472,20 @@ winTopLevelWindowProc (HWND hwnd, UINT message, return 0; } +#ifdef XWIN_GLX_WINDOWS + if (pWinPriv->fWglUsed) + { + /* + For regions which are being drawn by GL, the shadow framebuffer doesn't have the + correct bits, so don't bitblt from the shadow framebuffer + + XXX: For now, just leave it alone, but ideally we want to send an expose event to + the window so it really redraws the affected region... + */ + ValidateRect(hwnd, &(ps.rcPaint)); + } + else +#endif /* Try to copy from the shadow buffer */ if (!BitBlt (hdcUpdate, ps.rcPaint.left, ps.rcPaint.top, |