mesa: Throw an error when starting conditional render on an active query.
authorEric Anholt <eric@anholt.net>
Fri, 9 Sep 2011 00:17:31 +0000 (17:17 -0700)
committerEric Anholt <eric@anholt.net>
Mon, 19 Sep 2011 18:51:53 +0000 (11:51 -0700)
From the NV_conditional_render spec:

    BeginQuery sets the active query object name for the query type given by
    <target> to <id>.  If BeginQuery is called with an <id> of zero, if the
    active query object name for <target> is non-zero, if <id> is the active
    query object name for any query type, or if <id> is the active query
    object for condtional rendering (Section 2.X), the error INVALID OPERATION
    is generated.

Fixes piglit nv_conditional_render-begin-while-active.

Reviewed-by: Brian Paul <brianp@vmware.com>
src/mesa/main/condrender.c

index c8195a520cf3187eae8351c46f95f8ffb4b2da0e..57f3715211d01e509165e865ec20bd0534b2b0de 100644 (file)
@@ -73,7 +73,7 @@ _mesa_BeginConditionalRender(GLuint queryId, GLenum mode)
    }
    ASSERT(q->Id == queryId);
 
-   if (q->Target != GL_SAMPLES_PASSED) {
+   if (q->Target != GL_SAMPLES_PASSED || q->Active) {
       _mesa_error(ctx, GL_INVALID_OPERATION, "glBeginConditionalRender()");
       return;
    }