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