glColor3sv function opengl

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

Implementation

void glColor3sv(Pointer<Int16> v) {
  final glColor3svAsFunction = _glColor3sv
      .cast<NativeFunction<Void Function(Pointer<Int16> v)>>()
      .asFunction<void Function(Pointer<Int16> v)>();
  return glColor3svAsFunction(v);
}