test: add renderer phase regression entrypoint

This commit is contained in:
2026-04-02 02:49:27 +08:00
parent 569bc144e7
commit 619856ab22
3 changed files with 204 additions and 0 deletions

View File

@@ -4,3 +4,27 @@ project(XCEngine_RenderingTests)
add_subdirectory(unit)
add_subdirectory(integration)
add_custom_target(rendering_unit_test_targets
DEPENDS
rendering_unit_tests
)
add_custom_target(rendering_integration_tests
DEPENDS
rendering_integration_textured_quad_scene
rendering_integration_backpack_scene
rendering_integration_backpack_lit_scene
rendering_integration_camera_stack_scene
rendering_integration_transparent_material_scene
rendering_integration_cull_material_scene
rendering_integration_depth_sort_scene
rendering_integration_material_state_scene
rendering_integration_offscreen_scene
)
add_custom_target(rendering_all_tests
DEPENDS
rendering_unit_test_targets
rendering_integration_tests
)