From ab7188e1992e655031550d611178c55abe33d5c5 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Tue, 16 Oct 2012 17:36:42 -0700 Subject: [PATCH] mesa: Return 0 for GL_CURRENT_QUERY with a mismatched query target. With the previous two commits, this fixes piglit GL_ARB_occlusion_query2/api. Reviewed-by: Brian Paul Reviewed-by: Ian Romanick --- src/mesa/main/queryobj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/main/queryobj.c b/src/mesa/main/queryobj.c index 735e4d1b1ab..65e8571483a 100644 --- a/src/mesa/main/queryobj.c +++ b/src/mesa/main/queryobj.c @@ -532,7 +532,7 @@ _mesa_GetQueryIndexediv(GLenum target, GLuint index, GLenum pname, } break; case GL_CURRENT_QUERY_ARB: - *params = q ? q->Id : 0; + *params = (q && q->Target == target) ? q->Id : 0; break; default: _mesa_error(ctx, GL_INVALID_ENUM, "glGetQuery{Indexed}iv(pname)"); -- 2.11.0