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