glColor3i function
GLAPI void GLAPIENTRY glColor3i (GLint red, GLint green, GLint blue)
Implementation
void glColor3i(int red, int green, int blue) {
final glColor3iLookupFunction = libGL.lookupFunction<
Void Function(Int32 red, Int32 green, Int32 blue),
void Function(int red, int green, int blue)>('glColor3i');
return glColor3iLookupFunction(red, green, blue);
}