Click or drag to resize
SoGLBufferObjectMemcpy Method (SoBufferObject, UInt64, UInt64, UInt64)

Copy data from a buffer into this GL buffer.

Namespace: OIV.Inventor.Devices
Assembly: OIV.Inventor.GL (in OIV.Inventor.GL.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public override void Memcpy(
	SoBufferObject source,
	ulong destOffset,
	ulong sourceOffset,
	ulong copySize
)

Parameters

source
Type: OIV.Inventor.DevicesSoBufferObject

The buffer object to be copied.

destOffset
Type: SystemUInt64

The starting offset in the destination buffer object, useful for data subsets.

sourceOffset
Type: SystemUInt64

The starting offset in the source buffer object, useful for data subsets.

copySize
Type: SystemUInt64

The number of bytes to copy from the source buffer object (SO_BUFFER_SIZE_ALL means all).

Remarks

Notes:

This function is a specialized function for speed-up.

See Also