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

glCreateProgramPipelines - create program pipeline objects

C Specification

voidglCreateProgramPipelines(GLsizein,GLuint*pipelines);

Description

glCreateProgramPipelines returns n previously unused program pipeline names in pipelines, each
       representing a new program pipeline object initialized to the default state.

Errors

GL_INVALID_VALUE is generated if n is negative.

Name

       glCreateProgramPipelines - create program pipeline objects

Parameters

n
           Number of program pipeline objects to create.

       pipelines
           Specifies an array in which names of the new program pipeline objects are stored.

See Also

glBindProgramPipeline(), glCreateShader(), glCreateProgram(), glCompileShader(), glLinkProgram(),
       glGenProgramPipelines(), glDeleteProgramPipelines(), glIsProgramPipeline()

Version Support

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

See Also