glGetAttachedShaders

glGetAttachedShaders: man4/glGetAttachedShaders.xml

glGetAttachedShaders returns the names of the shader objects attached to program. The names of shader objects that are attached to program will be returned in shaders. The actual number of shader names written into shaders is returned in count. If no shader objects are attached to program, count is set to 0. The maximum number of shader names that may be returned in shaders is specified by maxCount. If the number of names actually returned is not required (for instance, if it has just been obtained by calling glGetProgram ), a value of null may be passed for count. If no shader objects are attached to program, a value of 0 will be returned in count. The actual number of attached shaders can be obtained by calling glGetProgram with the value GL_ATTACHED_SHADERS.

@OpenGL_Version(OGLIntroducedIn.V2P0)
fn_glGetAttachedShaders glGetAttachedShaders;

See Also

glAttachShader, glDetachShader.

Meta