glColor3sv function

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

Implementation

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