glColor4s function opengl

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 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);
}