glColor4s function
GLAPI void GLAPIENTRY glColor4s (GLshort red, GLshort green, GLshort blue, GLshort alpha)
Implementation
void glColor4s(int red, int green, int blue, int alpha) {
final glColor4sLookupFunction = libGL.lookupFunction<
Void Function(Int16 red, Int16 green, Int16 blue, Int16 alpha),
void Function(int red, int green, int blue, int alpha)>('glColor4s');
return glColor4sLookupFunction(red, green, blue, alpha);
}