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