glCompileShader function opengl_glext

void glCompileShader(
  1. int shader
)
GLAPI void APIENTRY glCompileShader (GLuint shader)

Implementation

void glCompileShader(int shader) {
  final glCompileShaderAsFunction = _glCompileShader
      .cast<NativeFunction<Void Function(Uint32 shader)>>()
      .asFunction<void Function(int shader)>();
  return glCompileShaderAsFunction(shader);
}