intel: make intel_flush_front safe to call during initial MakeCurrent
authorPaul Berry <stereotype441@gmail.com>
Thu, 30 May 2013 14:08:07 +0000 (07:08 -0700)
committerPaul Berry <stereotype441@gmail.com>
Fri, 7 Jun 2013 20:26:36 +0000 (13:26 -0700)
The patch that follows will fix a bug that prevents
intel_flush_front() from being called often enough.  In doing so, it
will create a situation where intel_flush_front() is called during the
initial call to glXMakeCurrent().  In this circumstance,
ctx->DrawBuffer hasn't been initialized yet and is NULL.  Fortunately,
intel->front_buffer_dirty is false, so intel_flush_front() doesn't
actually need to do anything.  To avoid a segfault, swap the order of
terms in intel_flush_front()'s if statement.

Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
src/mesa/drivers/dri/intel/intel_context.c

index 8c88b3ca2f7d2b2bd9d448b93b10c3580d7c3b52..54d0a69edc7b2d8e51ad16f2b7c41260ab2093fb 100644 (file)
@@ -132,7 +132,7 @@ intel_flush_front(struct gl_context *ctx)
     __DRIdrawable *driDrawable = driContext->driDrawablePriv;
     __DRIscreen *const screen = intel->intelScreen->driScrnPriv;
 
-    if (_mesa_is_winsys_fbo(ctx->DrawBuffer) && intel->front_buffer_dirty) {
+    if (intel->front_buffer_dirty && _mesa_is_winsys_fbo(ctx->DrawBuffer)) {
       if (screen->dri2.loader->flushFrontBuffer != NULL &&
           driDrawable &&
           driDrawable->loaderPrivate) {