SubPassFlags
Flags to indicate specialized native subpass behaviour.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Enum
- Namespace: UnityEngine.Rendering
- Assembly: UnityEngine.CoreModule
[Flags]public enum SubPassFlags
Fields
Value | Description |
|---|---|
| MultiviewRenderRegionsCompatible | This sub pass is compatible with Multiview Render Regions. |
| None | Default flags. |
| ReadOnlyDepth | The depth attachment is read-only in this sub pass. Some renderers require this in order to be able to use the depth attachment as input. |
| ReadOnlyDepthStencil | The stencil attachment is read-only in this sub pass. Some renderers require this in order to be able to use the stencil attachment as input. |
| ReadOnlyStencil | Both depth and stencil attachments are read-only in this sub pass. Some renderers require this in order to be able to use the depth and stencil attachments as inputs. |
| TileProperties | Frame buffer tile properties of this sub pass could potentially be used for performance gains on some platforms. |
| UseShadingRateImage | This sub pass has a shading rate image attachment. |