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

glDetachShader - Detaches a shader object from a program object to which it is attached

Associated Gets

glGetAttachedShaders() with the handle of a valid program object

       glGetShader() with arguments shader and GL_DELETE_STATUSglIsProgram()

       glIsShader()

C Specification

voidglDetachShader(GLuintprogram,GLuintshader);

Description

glDetachShader detaches the shader object specified by shader from the program object specified by
       program. This command can be used to undo the effect of the command glAttachShader().

       If shader has already been flagged for deletion by a call to glDeleteShader() and it is not attached to
       any other program object, it will be deleted after it has been detached.

Errors

GL_INVALID_VALUE is generated if either program or shader is a value that was not generated by OpenGL.

       GL_INVALID_OPERATION is generated if program is not a program object.

       GL_INVALID_OPERATION is generated if shader is not a shader object.

       GL_INVALID_OPERATION is generated if shader is not attached to program.

Name

       glDetachShader - Detaches a shader object from a program object to which it is attached

Parameters

program
           Specifies the program object from which to detach the shader object.

       shader
           Specifies the shader object to be detached.

See Also

glAttachShader()

Version Support

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

See Also