Enum BufferBinding
The type of binding to use when binding to the GPU.
Namespace: Gorgon.Graphics.Core
Assembly: Gorgon.Graphics.Core.dll
Syntax
[Flags]
public enum BufferBinding
Fields
Name | Description |
---|---|
None | No GPU access. This buffer will only be used on the CPU. This flag is mutally exclusive. |
ReadWrite | The GPU will have read/write access via the shaders using unordered access. |
Shader | The GPU will have access via the shaders as a shader resource. |
StreamOut | The GPU will bind this buffer as a stream out buffer used to receive data. |