Light | Dark

glGetProgramResourceIndex

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

The name of a program object whose resources to query.

programInterface

A token identifying the interface within program containing the resource named name.

name

The name of the resource to query the index of.

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 name and must be one of the following values:

GL_UNIFORM

The query is targeted at the set of active uniforms within program.

GL_UNIFORM_BLOCK

The query is targeted at the set of active uniform blocks within program.

GL_PROGRAM_INPUT

The query is targeted at the set of active input variables used by the first shader stage of program. If program contains multiple shader stages then input variables from any stage other than the first will not be enumerated.

GL_PROGRAM_OUTPUT

The query is targeted at the set of active output variables produced by the last shader stage of program. If program contains multiple shader stages then output variables from any stage other than the last will not be enumerated.

GL_TRANSFORM_FEEDBACK_VARYING

The query is targeted at the set of output variables from the vertex stage of program that would be captured if transform feedback were active.

GL_BUFFER_VARIABLE

The query is targeted at the set of active buffer variables used by program.

GL_SHADER_STORAGE_BLOCK

The query is targeted at the set of active shader storage blocks used by program.

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.

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.

API Version Support

OpenGL ES API Version
Function Name 2.0 3.0 3.1
glGetProgramResourceIndex - -
Think you can improve this page? Edit this page on GitHub.