Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>tags/10.3-branchpoint
@@ -2895,6 +2895,7 @@ struct gl_query_object | |||
GLboolean Active; /**< inside Begin/EndQuery */ | |||
GLboolean Ready; /**< result is ready? */ | |||
GLboolean EverBound;/**< has query object ever been bound */ | |||
GLuint Stream; /**< The stream */ | |||
}; | |||
@@ -367,6 +367,7 @@ _mesa_BeginQueryIndexed(GLenum target, GLuint index, GLuint id) | |||
q->Result = 0; | |||
q->Ready = GL_FALSE; | |||
q->EverBound = GL_TRUE; | |||
q->Stream = index; | |||
/* XXX should probably refcount query objects */ | |||
*bindpt = q; |