glRasterPos3sv function opengl
GLAPI void GLAPIENTRY glRasterPos3sv( const GLshort *v )
Implementation
void glRasterPos3sv(Pointer<Int16> v) {
final glRasterPos3svAsFunction = _glRasterPos3sv
.cast<NativeFunction<Void Function(Pointer<Int16> v)>>()
.asFunction<void Function(Pointer<Int16> v)>();
return glRasterPos3svAsFunction(v);
}