You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
473 B
13 lines
473 B
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; }
|
|
}
|
|
}
|