glRenderMode function opengl
GLAPI GLint GLAPIENTRY glRenderMode( GLenum mode )
Implementation
int glRenderMode(int mode) {
final glRenderModeAsFunction = _glRenderMode
.cast<NativeFunction<Int32 Function(Uint32 mode)>>()
.asFunction<int Function(int mode)>();
return glRenderModeAsFunction(mode);
}