summaryrefslogtreecommitdiff
path: root/src/mesa/main/framebuffer.c
diff options
context:
space:
mode:
authorAlan Hourihane <alanh@tungstengraphics.com>2006-06-21 10:58:04 +0000
committerAlan Hourihane <alanh@tungstengraphics.com>2006-06-21 10:58:04 +0000
commitfeb0ff11e5d429e1444f9987137c929adfb09bc8 (patch)
tree6edcc085362f7548740a24890abae788f78e5596 /src/mesa/main/framebuffer.c
parent4cd9e5c3c9dd80a8f2f0bc10b63ae504ca0660fb (diff)
Check for a valid context
Diffstat (limited to 'src/mesa/main/framebuffer.c')
-rw-r--r--src/mesa/main/framebuffer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/framebuffer.c b/src/mesa/main/framebuffer.c
index 4c64281a62..612746adef 100644
--- a/src/mesa/main/framebuffer.c
+++ b/src/mesa/main/framebuffer.c
@@ -328,7 +328,8 @@ _mesa_resize_framebuffer(GLcontext *ctx, struct gl_framebuffer *fb,
fb->Height = height;
/* to update scissor / window bounds */
- _mesa_update_draw_buffer_bounds(ctx);
+ if (ctx)
+ _mesa_update_draw_buffer_bounds(ctx);
}