Click or drag to resize
SoGpuBufferObjectBufferAccessNatures Enumeration

Available values for hints on the nature of the application's access to the buffer.

Namespace: OIV.Inventor.Devices
Assembly: OIV.Inventor (in OIV.Inventor.dll) Version: 2024.1.1.0 (2024.1.1)
Syntax
public enum BufferAccessNatures
Members
  Member nameValueDescription
SHARED0

The application will be writing data to the buffer, but will not read it.

DEVICE1

The application will be neither writing nor reading the data.

Only GPU commands will interact with the buffer. This is typically used when a buffer object is used to pass data from one place to another on GPU side.

Remarks

They indicate whether the application will be directly reading or writing the buffer's data.

See Also