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