table of contents
| GLGETQUERYINDEXEDIV(3G) | [FIXME: manual] | GLGETQUERYINDEXEDIV(3G) | 
NAME¶
glGetQueryIndexediv - return parameters of an indexed query object targetC SPECIFICATION¶
void
  glGetQueryIndexediv(GLenum target,
  GLuint index, GLenum pname,
  GLint * params);
PARAMETERS¶
targetSpecifies a query object target. Must be
  GL_SAMPLES_PASSED, GL_ANY_SAMPLES_PASSED,
  GL_PRIMITIVES_GENERATED,
  GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN, GL_TIME_ELAPSED, or
  GL_TIMESTAMP.
index
Specifies the index of the query object
  target.
pname
Specifies the symbolic name of a query object
  target parameter. Accepted values are GL_CURRENT_QUERY or
  GL_QUERY_COUNTER_BITS.
params
Returns the requested data.
DESCRIPTION¶
NOTES¶
If an error is generated, no change is made to the contents of params. Calling glGetQueryiv() is equivalent to calling glGetQueryIndexediv with index set to zero.ERRORS¶
SEE ALSO¶
COPYRIGHT¶
Copyright © 2010 Khronos Group. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/.| 05/30/2012 | [FIXME: source] |