logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

glGetFragDataIndex - query the bindings of color indices to user-defined varying out variables

C Specification

GLintglGetFragDataIndex(GLuintprogram,constchar*name);

Description

glGetFragDataIndex returns the index of the fragment color to which the variable name was bound when the
       program object program was last linked. If name is not a varying out variable of program, or if an error
       occurs, -1 will be returned.

Errors

GL_INVALID_OPERATION is generated if program is not the name of a program object.

Name

       glGetFragDataIndex - query the bindings of color indices to user-defined varying out variables

Notes

glGetFragDataIndex is available only if the GL version is 3.3 or greater.

Parameters

program
           The name of the program containing varying out variable whose binding to query

       name
           The name of the user-defined varying out variable whose index to query

See Also

glCreateProgram(), glBindFragDataLocation(), glBindFragDataLocationIndexed(), glGetFragDataLocation()

Version Support

       ┌────────────────────┬───────────────────────────────────────────────────────────────────────┐
       │                    │                OpenGLVersion                                         │
       ├────────────────────┼─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┬─────┤
       │ Function2.02.13.03.13.23.34.04.14.24.34.44.5 │
       │ /                  │     │     │     │     │     │     │     │     │     │     │     │     │
       │ Feature            │     │     │     │     │     │     │     │     │     │     │     │     │
       │ Name               │     │     │     │     │     │     │     │     │     │     │     │     │
       ├────────────────────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┼─────┤
       │ glGetFragDataIndex │  -  │  -  │  -  │  -  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │  ✔  │
       └────────────────────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┴─────┘

See Also