A game about forced loneliness, made by TACStudios
1namespace UnityEngine.Rendering.RenderGraphModule
2{
3 /// <summary>
4 /// Interface to add/manage Render Graph related parameters across different types of RenderPipelineAssets.
5 /// </summary>
6 public interface IRenderGraphEnabledRenderPipeline
7 {
8 /// <summary>
9 /// Indicates if this render pipeline instance supports ImmediateMode when debugging the render graph.
10 /// </summary>
11 bool isImmediateModeSupported { get; }
12 }
13}