glColor4s function opengl
GLAPI void GLAPIENTRY glColor4s( GLshort red, GLshort green, GLshort blue, GLshort alpha )
Implementation
void glColor4s(int red, int green, int blue, int alpha) {
final glColor4sAsFunction = _glColor4s
.cast<
NativeFunction<
Void Function(Int16 red, Int16 green, Int16 blue, Int16 alpha)
>
>()
.asFunction<void Function(int red, int green, int blue, int alpha)>();
return glColor4sAsFunction(red, green, blue, alpha);
}