glColor4sv function opengl

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

Implementation

void glColor4sv(Pointer<Int16> v) {
  final glColor4svAsFunction = _glColor4sv
      .cast<NativeFunction<Void Function(Pointer<Int16> v)>>()
      .asFunction<void Function(Pointer<Int16> v)>();
  return glColor4svAsFunction(v);
}