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

glGenProgramPipelines - reserve program pipeline object names

Associated Gets

glGet() with argument GL_PROGRAM_PIPELINE_BINDINGglIsProgramPipeline()

C Specification

voidglGenProgramPipelines(GLsizein,GLuint*pipelines);

Description

glGenProgramPipelines returns n previously unused program pipeline object names in pipelines. These names
       are marked as used, for the purposes of glGenProgramPipelines only, but they acquire program pipeline
       state only when they are first bound.

Name

       glGenProgramPipelines - reserve program pipeline object names

Parameters

n
           Specifies the number of program pipeline object names to reserve.

       pipelines
           Specifies an array of into which the reserved names will be written.

See Also

glDeleteProgramPipelines(), glBindProgramPipeline(), glIsProgramPipeline(), glUseProgramStages(),
       glUseProgram()

Version Support

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

See Also