diff options
-rw-r--r-- | src/mesa/main/framebuffer.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/framebuffer.c b/src/mesa/main/framebuffer.c index f2993b112bf..956527efbc1 100644 --- a/src/mesa/main/framebuffer.c +++ b/src/mesa/main/framebuffer.c @@ -226,7 +226,8 @@ _mesa_resize_framebuffer(GLcontext *ctx, struct gl_framebuffer *fb, fb->Height = height; /* to update scissor / window bounds */ - ctx->NewState |= _NEW_BUFFERS; + if (ctx) + ctx->NewState |= _NEW_BUFFERS; } |