feat(rendering): add managed fullscreen stage recording seam

This commit is contained in:
2026-04-17 22:58:39 +08:00
parent ed9b5178f8
commit b9f78c29b8
10 changed files with 541 additions and 9 deletions

View File

@@ -41,5 +41,14 @@ namespace XCEngine
m_nativeHandle,
(int)injectionPoint);
}
public bool RecordBuiltinColorScaleFullscreenPass(
Vector4 colorScale)
{
return InternalCalls
.Rendering_ScriptableRenderContext_RecordBuiltinColorScaleFullscreenPass(
m_nativeHandle,
ref colorScale);
}
}
}