commit | feb0ff11e5d429e1444f9987137c929adfb09bc8 | [log] [tgz] |
---|---|---|
author | Alan Hourihane <alanh@tungstengraphics.com> | Wed Jun 21 10:58:04 2006 +0000 |
committer | Alan Hourihane <alanh@tungstengraphics.com> | Wed Jun 21 10:58:04 2006 +0000 |
tree | 6edcc085362f7548740a24890abae788f78e5596 | |
parent | 4cd9e5c3c9dd80a8f2f0bc10b63ae504ca0660fb [diff] [blame] |
Check for a valid context
diff --git a/src/mesa/main/framebuffer.c b/src/mesa/main/framebuffer.c index 4c64281..612746a 100644 --- a/src/mesa/main/framebuffer.c +++ b/src/mesa/main/framebuffer.c
@@ -328,7 +328,8 @@ fb->Height = height; /* to update scissor / window bounds */ - _mesa_update_draw_buffer_bounds(ctx); + if (ctx) + _mesa_update_draw_buffer_bounds(ctx); }