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