glColor3sv function opengl
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);
}