glBegin function
GLAPI void GLAPIENTRY glBegin (GLenum mode)
Implementation
void glBegin(int mode) {
final glBeginLookupFunction =
libGL.lookupFunction<Void Function(Uint32 mode), void Function(int mode)>(
'glBegin');
return glBeginLookupFunction(mode);
}