Files
2025-11-30 08:35:03 +02:00

14 lines
473 B
C#

namespace UnityEngine.Rendering.RenderGraphModule
{
/// <summary>
/// Interface to add/manage Render Graph related parameters across different types of RenderPipelineAssets.
/// </summary>
public interface IRenderGraphEnabledRenderPipeline
{
/// <summary>
/// Indicates if this render pipeline instance supports ImmediateMode when debugging the render graph.
/// </summary>
bool isImmediateModeSupported { get; }
}
}