File tree Expand file tree Collapse file tree
com.unity.render-pipelines.high-definition/Runtime/RenderPipeline
com.unity.render-pipelines.universal/Runtime/Data Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,6 +26,9 @@ public partial class HDRenderPipelineAsset : RenderPipelineAsset<HDRenderPipelin
2626 /// <inheritdoc/>
2727 public override string renderPipelineShaderTag => HDRenderPipeline . k_ShaderTagName ;
2828
29+ /// <inheritdoc/>
30+ protected override bool requiresCompatibleRenderPipelineGlobalSettings => true ;
31+
2932 [ System . NonSerialized ]
3033 internal bool isInOnValidateCall = false ;
3134
Original file line number Diff line number Diff line change @@ -1620,6 +1620,9 @@ public int numIterationsEnclosingSphere
16201620 /// <inheritdoc/>
16211621 public override string renderPipelineShaderTag => UniversalRenderPipeline . k_ShaderTagName ;
16221622
1623+ /// <inheritdoc/>
1624+ protected override bool requiresCompatibleRenderPipelineGlobalSettings => true ;
1625+
16231626 /// <summary>Names used for display of rendering layer masks.</summary>
16241627 [ Obsolete ( "This property is obsolete. Use RenderingLayerMask API and Tags & Layers project settings instead. #from(23.3)" , false ) ]
16251628 public override string [ ] renderingLayerMaskNames => RenderingLayerMask . GetDefinedRenderingLayerNames ( ) ;
@@ -1968,5 +1971,6 @@ public bool isStpUsed
19681971 {
19691972 get { return m_UpscalingFilter == UpscalingFilterSelection . STP ; }
19701973 }
1974+
19711975 }
19721976}
You can’t perform that action at this time.
0 commit comments