glColor4sv function

void glColor4sv(
  1. Pointer<Int16> v
)
GLAPI void GLAPIENTRY glColor4sv (const GLshort *v)

Implementation

void glColor4sv(Pointer<Int16> v) {
  final glColor4svLookupFunction = libGL.lookupFunction<
      Void Function(Pointer<Int16> v),
      void Function(Pointer<Int16> v)>('glColor4sv');
  return glColor4svLookupFunction(v);
}