Enum ComputeShaderFormatSupport
Defines what functionality is available for a BufferFormat and a Compute Shader.
Namespace: Gorgon.Graphics.Core
Assembly: Gorgon.Graphics.Core.dll
Syntax
[Flags]
public enum ComputeShaderFormatSupport
Fields
Name | Description |
---|---|
AtomCompareStoreOrExchange | Format supports atomic compare with store or exchange. |
AtomicAdd | Format supports atomic add. |
AtomicBitwiseOperations | Format supports atomic bitwise operations. |
AtomicExchange | Format supports atomic exchange. |
AtomicSignedMinMax | Format supports atomic min and max. |
AtomicUnsignedMinMax | Format supports atomic unsigned min and max. |
MultiplaneOverlay | Format supports multi-plane overlays. |
None | No support. |
OutputMergerLogicOperation | Format supports logic operations in blend state. |
Shareable | Format supports shareable resources. |
Tiled | Format supports tiled resources. |
TypedLoad | Format supports a typed load. |
TypedStore | Format supports a typed store. |