Browse Source

mesa: Include stream information in indexed queries.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
tags/10.3-branchpoint
Iago Toral Quiroga 11 years ago
parent
commit
ecd9960430
2 changed files with 2 additions and 0 deletions
  1. 1
    0
      src/mesa/main/mtypes.h
  2. 1
    0
      src/mesa/main/queryobj.c

+ 1
- 0
src/mesa/main/mtypes.h View File

@@ -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 */
};



+ 1
- 0
src/mesa/main/queryobj.c View File

@@ -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;

Loading…
Cancel
Save