logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

glGetFragDataLocation - query the bindings of color numbers to user-defined varying out variables

C Specification

GLintglGetFragDataLocation(GLuintprogram,constchar*name);

Description

glGetFragDataLocation retrieves the assigned color number binding for the user-defined varying out
       variable name for program program.  program must have previously been linked.  name must be a
       null-terminated string. If name is not the name of an active user-defined varying out fragment shader
       variable within program, -1 will be returned.

Errors

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

Name

       glGetFragDataLocation - query the bindings of color numbers to user-defined varying out variables

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 binding to query

See Also

glCreateProgram(), glBindFragDataLocation()

Version Support

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

See Also