enum GpuBufferFlag
Flags that determine how a GpuBuffer behaves.
Values
| Name | Value | Description |
|---|---|---|
StoreOnGPU |
1 |
Ensures the buffer is placed into memory on the GPU device. |
StoreOnCPUWithGPUAccess |
2 |
Places the buffer into CPU memory accessible to the GPU. |
AllowUnorderedAccessOnTheGPU |
4 |
Ensures that the GPU can perform write operations in the buffer. |