refactor(srp): enable managed standalone shadow and depth stages

This commit is contained in:
2026-04-21 16:22:26 +08:00
parent 2c49ac58d9
commit 1a6aacb636
18 changed files with 449 additions and 51 deletions

View File

@@ -80,6 +80,20 @@ namespace XCEngine.Rendering
m_nativeHandle);
}
public bool RequestDepthOnlyStage()
{
return InternalCalls
.Rendering_ScriptableRenderPipelinePlanningContext_RequestDepthOnlyStage(
m_nativeHandle);
}
public void ClearDepthOnlyStage()
{
InternalCalls
.Rendering_ScriptableRenderPipelinePlanningContext_ClearDepthOnlyStage(
m_nativeHandle);
}
public bool HasFinalColorProcessing()
{
return InternalCalls