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

gl_GlobalInvocationID - contains the global index of work item currently being operated on by a compute

Declaration

       in uvec3 gl_GlobalInvocationID ;.SH "DESCRIPTION"

       In the compute language, gl_GlobalInvocationID is a derived input variable containing the n-dimensional
       index of the work invocation within the global work group that the current shader is executing on. The
       value of gl_GlobalInvocationID is equal to gl_WorkGroupID * gl_WorkGroupSize + gl_LocalInvocationID.

Name

       gl_GlobalInvocationID - contains the global index of work item currently being operated on by a compute
       shader

See Also

gl_NumWorkGroups(), gl_WorkGroupID(), gl_WorkGroupSize(), gl_LocalInvocationID()

Version Support

       ┌───────────────────────┬───────────────────────────────────────────────────────────────────────────────────┐
       │                       │        OpenGLShadingLanguageVersion                                            │
       ├───────────────────────┼──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┬──────┤
       │ Variable1.101.201.301.401.503.304.004.104.204.304.404.50 │
       │ Name                  │      │      │      │      │      │      │      │      │      │      │      │      │
       ├───────────────────────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┼──────┤
       │ gl_GlobalInvocationID │  -   │  -   │  -   │  -   │  -   │  -   │  -   │  -   │  -   │  ✔   │  ✔   │  ✔   │
       └───────────────────────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┴──────┘

See Also