glRenderMode function
GLAPI GLint GLAPIENTRY glRenderMode (GLenum mode)
Implementation
int glRenderMode(int mode) {
final glRenderModeLookupFunction =
libGL.lookupFunction<Int32 Function(Uint32 mode), int Function(int mode)>(
'glRenderMode');
return glRenderModeLookupFunction(mode);
}