delete-gl-shader ( shader -- )


Vocabulary
opengl.shaders

Inputs and outputs
shaderA gl-shader object


Word description
Deletes the shader object, invalidating it and releasing any resources allocated for it by the OpenGL implementation.

Definition
USING: opengl.gl ;

IN: opengl.shaders

: delete-gl-shader ( shader -- ) glDeleteShader ; inline