vbo: simplify NeedFlush flag clearing
authorBrian Paul <brianp@vmware.com>
Tue, 22 Feb 2011 20:31:09 +0000 (13:31 -0700)
committerBrian Paul <brianp@vmware.com>
Tue, 22 Feb 2011 20:31:09 +0000 (13:31 -0700)
src/mesa/vbo/vbo_exec_api.c

index 8dcbc8b..2f9f3ec 100644 (file)
@@ -974,10 +974,7 @@ void vbo_exec_FlushVertices( struct gl_context *ctx, GLuint flags )
 
    /* Need to do this to ensure BeginVertices gets called again:
     */
-   if (ctx->Driver.NeedFlush & FLUSH_UPDATE_CURRENT)
-      ctx->Driver.NeedFlush &= ~FLUSH_UPDATE_CURRENT;
-
-   ctx->Driver.NeedFlush &= ~flags;
+   ctx->Driver.NeedFlush &= ~(FLUSH_UPDATE_CURRENT | flags);
 
 #ifdef DEBUG
    exec->flush_call_depth--;