GLAPI/glGetActiveAtomicCounterBuffer: Difference between revisions
m Bot: Adding better formatting. |
m Bot: Adding better formatting. |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 30: | Line 30: | ||
If {{param|pname}} is {{enum|GL_ATOMIC_COUNTER_BUFFER_BINDING}}, then the index of the counter buffer binding point associated with the active atomic counter buffer {{param|bufferIndex}} for {{param|program}} is returned. | If {{param|pname}} is {{enum|GL_ATOMIC_COUNTER_BUFFER_BINDING}}, then the index of the counter buffer binding point associated with the active atomic counter buffer {{param|bufferIndex}} for {{param|program}} is returned. | ||
If {{param|pname}} is {{enum|GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE}}, then the implementation-dependent minimum total buffer object size, in | If {{param|pname}} is {{enum|GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE}}, then the implementation-dependent minimum total buffer object size, in basic machine units, required to hold all active atomic counters in the atomic counter binding point identified by {{param|bufferIndex}} is returned. | ||
If {{param|pname}} is {{enum|GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS}}, then the number of active atomic counters for the atomic counter buffer identified by {{param|bufferIndex}} is returned. | If {{param|pname}} is {{enum|GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS}}, then the number of active atomic counters for the atomic counter buffer identified by {{param|bufferIndex}} is returned. | ||
Line 51: | Line 51: | ||
{{enum|GL_INVALID_ENUM}} is generated if {{param|pname}} is not one of the accepted tokens. | {{enum|GL_INVALID_ENUM}} is generated if {{param|pname}} is not one of the accepted tokens. | ||
== Associated Gets == | |||
{{apifunc|glGetProgram}} with {{enum|GL_ACTIVE_ATOMIC_COUNTER_BUFFERS}} | |||
{{apifunc|glGetActiveUniforms}} with {{enum|GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX}} | |||
{{apifunc|glGetProgramResource}} with {{enum|GL_UNIFORM}} for the interface and {{enum|GL_ATOMIC_COUNTER_BUFFER_INDEX}} | |||
== See Also == | == See Also == | ||
{{apifunc| | {{apifunc|glGetProgramResource}}, {{apifunc|glGetUniformLocation}} | ||
== Copyright == | == Copyright == | ||
Line 62: | Line 70: | ||
[[Category:Core API Ref Shader Program Query|GetActiveAtomicCounterBuffer]] | [[Category:Core API Ref Shader Program Query|GetActiveAtomicCounterBuffer]] | ||
[[Category:Core API Reference|GetActiveAtomicCounterBuffer]] | [[Category:Core API Reference|GetActiveAtomicCounterBuffer]] | ||
[[Category:Program Object API State Functions|GetActiveAtomicCounterBuffer]] |
Latest revision as of 09:58, 15 August 2013
Core in version | 4.6 | |
---|---|---|
Core since version | 4.2 | |
Core ARB extension | ARB_shader_atomic_counters |
glGetActiveAtomicCounterBufferiv: retrieve information about the set of active atomic counter buffers for a program
Function Definition
void glGetActiveAtomicCounterBufferiv(Gluint program, GLuint bufferIndex, GLenum pname, GLint *params);
- program
- The name of a program object from which to retrieve information.
- bufferIndex
- Specifies index of an active atomic counter buffer.
- pname
- Specifies which parameter of the atomic counter buffer to retrieve.
- params
- Specifies the address of a variable into which to write the retrieved information.
Description
glGetActiveAtomicCounterBufferiv retrieves information about the set of active atomic counter buffers for a program object. program is the name of a program object for which the command glLinkProgram has been issued in the past. It is not necessary for program to have been linked successfully. The link may have failed because the number of active atomic counters exceeded the limits.
bufferIndex specifies the index of an active atomic counter buffer and must be in the range zero to the value of GL_ACTIVE_ATOMIC_COUNTER_BUFFERS minus one. The value of GL_ACTIVE_ATOMIC_COUNTER_BUFFERS for program indicates the number of active atomic counter buffer and can be queried with glGetProgram.
If no error occurs, the parameter(s) specified by pname are returned in params. If an error is generated, the contents of params are not modified.
If pname is GL_ATOMIC_COUNTER_BUFFER_BINDING, then the index of the counter buffer binding point associated with the active atomic counter buffer bufferIndex for program is returned.
If pname is GL_ATOMIC_COUNTER_BUFFER_DATA_SIZE, then the implementation-dependent minimum total buffer object size, in basic machine units, required to hold all active atomic counters in the atomic counter binding point identified by bufferIndex is returned.
If pname is GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS, then the number of active atomic counters for the atomic counter buffer identified by bufferIndex is returned.
If pname is GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTER_INDICES, then a list of the active atomic counter indices for the atomic counter buffer identified by bufferIndex is returned. The number of elements that will be written into params is the value of GL_ATOMIC_COUNTER_BUFFER_ACTIVE_ATOMIC_COUNTERS for bufferIndex.
If pname is GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_VERTEX_SHADER, GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_CONTROL_SHADER, GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_TESS_EVALUATION_SHADER, GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_GEOMETRY_SHADER, GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_FRAGMENT_SHADER, GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER then a boolean value indicating whether the atomic counter buffer identified by bufferIndex is referenced by the vertex, tessellation control, tessellation evaluation, geometry, fragment or compute processing stages of program, respectively, is returned.
Notes
glGetActiveAtomicCounterBufferiv is available only if the GL version is 4.2 or higher.
GL_ATOMIC_COUNTER_BUFFER_REFERENCED_BY_COMPUTE_SHADER is available only of the GL version is 4.3 or higher.
Errors
GL_INVALID_VALUE is generated if program is not the name of a program object for which glLinkProgram has been called in the past.
GL_INVALID_VALUE is generated if bufferIndex is greater than or equal to the value of GL_ACTIVE_ATOMIC_COUNTER_BUFFERS for program.
GL_INVALID_ENUM is generated if pname is not one of the accepted tokens.
Associated Gets
glGetProgram with GL_ACTIVE_ATOMIC_COUNTER_BUFFERS
glGetActiveUniforms with GL_UNIFORM_ATOMIC_COUNTER_BUFFER_INDEX
glGetProgramResource with GL_UNIFORM for the interface and GL_ATOMIC_COUNTER_BUFFER_INDEX
See Also
glGetProgramResource, glGetUniformLocation
Copyright
Copyright © 2011 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/.