glCompileShader function opengl_glext
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);
}