설명 없음
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.

IRenderGraphEnabledRenderPipeline.cs 473B

12345678910111213
  1. namespace 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. }