Class ARBGetProgramBinary
This extension introduces new commands to retrieve and set the binary representation of a program object. GetProgramBinary allows an application to
cache compiled and linked programs to avoid compiling and linking when used again. This may even allow the GL itself to act as an offline compiler. The
resulting program binary can be reloaded into the GL via ProgramBinary. This is a very useful path for applications that wish to remain portable by
shipping pure GLSL source shaders, yet would like to avoid the cost of compiling their shaders at runtime. Instead an application can supply its GLSL
source shaders during first application run, or even during installation. The application then compiles and links its shaders and reads back the program
binaries. On subsequent runs, only the program binaries need be supplied.
ProgramBinary may also accept binaries in vendor-specific formats produced by specialized offline compilation tools. This extension does not add any
such formats, but allows for them in further extensions. Though the level of optimization may not be identical -- the offline shader compiler may have
the luxury of more aggressive optimization at its disposal -- program binaries generated online by the GL are interchangeable with those generated
offline by an SDK tool.
Requires OpenGL 3.0. Promoted to core in OpenGL 4.1.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intAccepted by thepnameparameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv and GetDoublev.static final intAccepted by thepnameparameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv and GetDoublev.static final intAccepted by thepnameparameter of GetProgramiv.static final intAccepted by thepnameparameter of ProgramParameteri and GetProgramiv. -
Method Summary
Modifier and TypeMethodDescriptionstatic voidglGetProgramBinary(int program, int[] length, int[] binaryFormat, ByteBuffer binary) Array version of:GetProgramBinarystatic voidglGetProgramBinary(int program, IntBuffer length, IntBuffer binaryFormat, ByteBuffer binary) Returns a binary representation of a program object's compiled and linked executable source.static voidglProgramBinary(int program, int binaryFormat, ByteBuffer binary) Loads a program object with a program binary.static voidglProgramParameteri(int program, int pname, int value) Specifies the integer value of a program object parameter.static voidnglGetProgramBinary(int program, int bufSize, long length, long binaryFormat, long binary) Unsafe version of:GetProgramBinarystatic voidnglProgramBinary(int program, int binaryFormat, long binary, int length) Unsafe version of:ProgramBinary
-
Field Details
-
GL_PROGRAM_BINARY_RETRIEVABLE_HINT
public static final int GL_PROGRAM_BINARY_RETRIEVABLE_HINTAccepted by thepnameparameter of ProgramParameteri and GetProgramiv.- See Also:
-
GL_PROGRAM_BINARY_LENGTH
public static final int GL_PROGRAM_BINARY_LENGTHAccepted by thepnameparameter of GetProgramiv.- See Also:
-
GL_NUM_PROGRAM_BINARY_FORMATS
public static final int GL_NUM_PROGRAM_BINARY_FORMATSAccepted by thepnameparameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv and GetDoublev.- See Also:
-
GL_PROGRAM_BINARY_FORMATS
public static final int GL_PROGRAM_BINARY_FORMATSAccepted by thepnameparameter of GetBooleanv, GetIntegerv, GetInteger64v, GetFloatv and GetDoublev.- See Also:
-
-
Method Details
-
nglGetProgramBinary
public static void nglGetProgramBinary(int program, int bufSize, long length, long binaryFormat, long binary) Unsafe version of:GetProgramBinary- Parameters:
bufSize- the size of the buffer whose address is given bybinary
-
glGetProgramBinary
public static void glGetProgramBinary(int program, @Nullable IntBuffer length, IntBuffer binaryFormat, ByteBuffer binary) Returns a binary representation of a program object's compiled and linked executable source.- Parameters:
program- the name of a program object whose binary representation to retrievelength- the address of a variable to receive the number of bytes written intobinarybinaryFormat- a variable to receive a token indicating the format of the binary data returned by the GLbinary- an array into which the GL will returnprogram's binary representation
-
nglProgramBinary
public static void nglProgramBinary(int program, int binaryFormat, long binary, int length) Unsafe version of:ProgramBinary- Parameters:
length- the number of bytes contained inbinary
-
glProgramBinary
Loads a program object with a program binary.- Parameters:
program- the name of a program object into which to load a program binarybinaryFormat- the format of the binary data in binarybinary- an array containing the binary to be loaded intoprogram
-
glProgramParameteri
public static void glProgramParameteri(int program, int pname, int value) Specifies the integer value of a program object parameter.- Parameters:
program- the name of a program object whose parameter to modifypname- the name of the parameter to modify. One of:PROGRAM_BINARY_RETRIEVABLE_HINTPROGRAM_SEPARABLEvalue- the new value of the parameter specified bypnameforprogram
-
glGetProgramBinary
public static void glGetProgramBinary(int program, @Nullable int[] length, int[] binaryFormat, ByteBuffer binary) Array version of:GetProgramBinary
-