glColor3b function opengl
GLAPI void GLAPIENTRY glColor3b( GLbyte red, GLbyte green, GLbyte blue )
Implementation
void glColor3b(int red, int green, int blue) {
final glColor3bAsFunction = _glColor3b
.cast<NativeFunction<Void Function(Int8 red, Int8 green, Int8 blue)>>()
.asFunction<void Function(int red, int green, int blue)>();
return glColor3bAsFunction(red, green, blue);
}