feat(srp): formalize scene recording and draw entrypoints

This commit is contained in:
2026-04-20 18:54:04 +08:00
parent b521616e27
commit 3df87e941c
20 changed files with 1054 additions and 181 deletions

View File

@@ -0,0 +1,12 @@
namespace XCEngine.Rendering
{
public enum SceneRenderPhase
{
Opaque = 0,
Skybox = 1,
Transparent = 3,
EditorExtension = 4,
PostProcess = 5,
FinalOutput = 6
}
}