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

glIsProgramPipeline - determine if a name corresponds to a program pipeline object

C Specification

GLbooleanglIsProgramPipeline(GLuintpipeline);

Description

glIsProgramPipeline returns GL_TRUE if pipeline is currently the name of a program pipeline object. If
       pipeline is zero, or if pipeline is not the name of a program pipeline object, or if an error occurs,
       glIsProgramPipeline returns GL_FALSE. If pipeline is a name returned by glGenProgramPipelines(), but that
       has not yet been bound through a call to glBindProgramPipeline(), then the name is not a program pipeline
       object and glIsProgramPipeline returns GL_FALSE.

Name

       glIsProgramPipeline - determine if a name corresponds to a program pipeline object

Parameters

pipeline
           Specifies a value that may be the name of a program pipeline object.

See Also

glGenProgramPipelines(), glBindProgramPipeline(), glDeleteProgramPipelines()

Version Support

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

See Also