glColor3i function opengl
GLAPI void GLAPIENTRY glColor3i( GLint red, GLint green, GLint blue )
Implementation
void glColor3i(int red, int green, int blue) {
final glColor3iAsFunction = _glColor3i
.cast<NativeFunction<Void Function(Int32 red, Int32 green, Int32 blue)>>()
.asFunction<void Function(int red, int green, int blue)>();
return glColor3iAsFunction(red, green, blue);
}