glColor4s function

void glColor4s(
  1. int red,
  2. int green,
  3. int blue,
  4. int alpha,
)
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);
}