Difference between revisions of "GLAPI/glDeleteShader"
m (Bot: Adjusting API page category.) |
m (Renaming category: 'API Reference 4' to 'Core API Reference'.) |
||
Line 41: | Line 41: | ||
Copyright © 2003-2005 3Dlabs Inc. Ltd. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. [http://opencontent.org/openpub/ http://opencontent.org/openpub/]. | Copyright © 2003-2005 3Dlabs Inc. Ltd. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. [http://opencontent.org/openpub/ http://opencontent.org/openpub/]. | ||
− | |||
[[Category:GL 4 API Shader Program Creation|DeleteShader]] | [[Category:GL 4 API Shader Program Creation|DeleteShader]] | ||
+ | [[Category:Core API Reference|DeleteShader]] |
Revision as of 07:39, 26 February 2012
Core in version | 4.6 | |
---|---|---|
Core since version | 2.0 |
glDeleteShader: Deletes a shader object
Function Definition
void glDeleteShader(GLuint shader);
- shader
- Specifies the shader object to be deleted.
Description
glDeleteShader frees the memory and invalidates the name associated with the shader object specified by shader. This command effectively undoes the effects of a call to glCreateShader.
If a shader object to be deleted is attached to a program object, it will be flagged for deletion, but it will not be deleted until it is no longer attached to any program object, for any rendering context (i.e., it must be detached from wherever it was attached before it will be deleted). A value of 0 for shader will be silently ignored.
To determine whether an object has been flagged for deletion, call glGetShader with arguments shader and GL_DELETE_STATUS.
Errors
GL_INVALID_VALUE is generated if shader is not a value generated by OpenGL.
Associated Gets
glGetAttachedShaders with the program object to be queried
glGetShader with arguments shader and GL_DELETE_STATUS
See Also
glCreateProgram, glCreateShader, glDetachShader, glUseProgram
Copyright
Copyright © 2003-2005 3Dlabs Inc. Ltd. This material may be distributed subject to the terms and conditions set forth in the Open Publication License, v 1.0, 8 June 1999. http://opencontent.org/openpub/.