glCompileShaderArb function opengl_glext
GLAPI void APIENTRY glCompileShaderARB (GLhandleARB shaderObj)
Implementation
void glCompileShaderArb(Pointer<NativeType> shaderObj) {
final glCompileShaderArbAsFunction = _glCompileShaderArb
.cast<NativeFunction<Void Function(Pointer<NativeType> shaderObj)>>()
.asFunction<void Function(Pointer<NativeType> shaderObj)>();
return glCompileShaderArbAsFunction(shaderObj);
}