commit | 52f686c48080cec9a26aa23d16bc14bd3d302d70 | [log] [tgz] |
---|---|---|
author | Brian Paul <brian.paul@tungstengraphics.com> | Fri Oct 21 21:39:10 2005 +0000 |
committer | Brian Paul <brian.paul@tungstengraphics.com> | Fri Oct 21 21:39:10 2005 +0000 |
tree | 910303a6eb32c78ef9d9cffc4c8d51f3996356da | |
parent | 7d3b26022b75608e2c9d83c14157b89ef39cbd43 [diff] [blame] |
fix GLX server resize/crash when resizing windows
diff --git a/src/mesa/main/framebuffer.c b/src/mesa/main/framebuffer.c index 479f762..f2993b1 100644 --- a/src/mesa/main/framebuffer.c +++ b/src/mesa/main/framebuffer.c
@@ -224,6 +224,9 @@ fb->Width = width; fb->Height = height; + + /* to update scissor / window bounds */ + ctx->NewState |= _NEW_BUFFERS; }