glCompileShaderArb function opengl_glext

void glCompileShaderArb(
  1. Pointer<NativeType> shaderObj
)
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);
}