ComputeBufferMode
Intended usage of the buffer.
Read time 1 minuteLast updated 2 days ago
Definition
- Type: Enum
- Namespace: UnityEngine
- Assembly: UnityEngine.CoreModule
public enum ComputeBufferMode
Remarks
Use this enum to convey the intended usage of the buffer to the engine, so that Unity can decide where and how to store the buffer contents.
Fields
Value | Description |
|---|---|
| Dynamic | Dynamic buffer. |
| Immutable | Static buffer, only initial upload allowed by the CPU |
| SubUpdates | Dynamic, unsynchronized access to the buffer. |