refactor(srp): move core stage defaults into universal renderer

This commit is contained in:
2026-04-21 15:44:19 +08:00
parent 6a538d0d2e
commit f2be5627be
14 changed files with 408 additions and 111 deletions

View File

@@ -66,6 +66,20 @@ namespace XCEngine.Rendering
(int)stage);
}
public bool RequestShadowCasterStage()
{
return InternalCalls
.Rendering_ScriptableRenderPipelinePlanningContext_RequestShadowCasterStage(
m_nativeHandle);
}
public void ClearShadowCasterStage()
{
InternalCalls
.Rendering_ScriptableRenderPipelinePlanningContext_ClearShadowCasterStage(
m_nativeHandle);
}
public bool HasFinalColorProcessing()
{
return InternalCalls