glProgramBinary

glProgramBinary: man4/glProgramBinary.xml

glProgramBinary loads a program object with a program binary previously returned from glGetProgramBinary. binaryFormat and binary must be those returned by a previous call to glGetProgramBinary, and length must be the length returned by glGetProgramBinary, or by glGetProgram when called with pname set to GL_PROGRAM_BINARY_LENGTH. If these conditions are not met, loading the program binary will fail and program 's GL_LINK_STATUS will be set to GL_FALSE. A program object's program binary is replaced by calls to glLinkProgram or glProgramBinary. When linking success or failure is concerned, glProgramBinary can be considered to perform an implicit linking operation. glLinkProgram and glProgramBinary both set the program object's GL_LINK_STATUS to GL_TRUE or GL_FALSE. A successful call to glProgramBinary will reset all uniform variables to their initial values. The initial value is either the value of the variable's initializer as specified in the original shader source, or zero if no initializer was present. Additionally, all vertex shader input and fragment shader output assignments that were in effect when the program was linked before saving are restored with glProgramBinary is called.

A program binary may fail to load if the implementation determines that there has been a change in hardware or software configuration from when the program binary was produced such as having been compiled with an incompatible or outdated version of the compiler.

@OpenGL_Version(OGLIntroducedIn.V4P1)
@OpenGL_Extension("GL_ARB_get_program_binary")
fn_glProgramBinary glProgramBinary;

See Also

glGetProgram, glGetProgramBinary

Meta