GLGETPROGRAMRESOURCE(3G) | [FIXME: manual] | GLGETPROGRAMRESOURCE(3G) |
NAME
glGetProgramResourceIndex - query the index of a named resource within a program
C SPECIFICATION
GLuint glGetProgramResourceIndex(GLuint program, GLenum programInterface, const char * name);
PARAMETERS
program
programInterface
name
DESCRIPTION
glGetProgramResourceIndex returns the unsigned integer index assigned to a resource named name in the interface type programInterface of program object program.
program must be the name of an existing program object. programInterface is the name of the interface within program which contains the resource named nameand must be one of the following values:
GL_UNIFORM
GL_UNIFORM_BLOCK
GL_PROGRAM_INPUT
GL_PROGRAM_OUTPUT
GL_VERTEX_SUBROUTINE, GL_TESS_CONTROL_SUBROUTINE, GL_TESS_EVALUATION_SUBROUTINE, GL_GEOMETRY_SUBROUTINE, GL_FRAGMENT_SUBROUTINE, GL_COMPUTE_SUBROUTINE
GL_VERTEX_SUBROUTINE_UNIFORM, GL_TESS_CONTROL_SUBROUTINE_UNIFORM, GL_TESS_EVALUATION_SUBROUTINE_UNIFORM, GL_GEOMETRY_SUBROUTINE_UNIFORM, GL_FRAGMENT_SUBROUTINE_UNIFORM, GL_COMPUTE_SUBROUTINE_UNIFORM
GL_TRANSFORM_FEEDBACK_VARYING
GL_TRANSFORM_FEEDBACK_BUFFER
GL_BUFFER_VARIABLE
GL_SHADER_STORAGE_BLOCK
If name exactly matches the name string of one of the active resources for programInterface, the index of the matched resource is returned. Additionally, if name would exactly match the name string of an active resource if "[0]" were appended to name, the index of the matched resource is returned. Otherwise, name is considered not to be the name of an active resource, and GL_INVALID_INDEX is returned.
For the interface GL_TRANSFORM_FEEDBACK_VARYING, the value GL_INVALID_INDEX should be returned when querying the index assigned to the special names gl_NextBuffer, gl_SkipComponents1, gl_SkipComponents2, gl_SkipComponents3, or gl_SkipComponents4.
ERRORS
GL_INVALID_ENUM is generated if programInterface is not one of the accepted interface types.
GL_INVALID_ENUM is generated if programInterface is GL_ATOMIC_COUNTER_BUFFER or GL_TRANSFORM_FEEDBACK_BUFFER, since active atomic counter and transform feedback buffer resources are not assigned name strings.
Although not an error, GL_INVALID_INDEX is returned if name is not the name of a resource within the interface identified by programInterface.
VERSION SUPPORT
OpenGL Version | ||||||||||||
Function / Feature Name | 2.0 | 2.1 | 3.0 | 3.1 | 3.2 | 3.3 | 4.0 | 4.1 | 4.2 | 4.3 | 4.4 | 4.5 |
glGetProgramResourceIndex | - | - | - | - | - | - | - | - | - | ✔ | ✔ | ✔ |
SEE ALSO
glGetProgramResourceName(), glGetProgramResource(), glGetProgramResourceLocation(), glGetProgramResourceLocationIndex().
COPYRIGHT
Copyright © 2013-2014 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. https://opencontent.org/openpub/.
COPYRIGHT
Copyright © 2013-2014 Khronos Group
10/20/2024 | [FIXME: source] |