diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-02 13:12:01 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-02 13:12:01 +0100 |
| commit | d1d87447ae44d85b15e748c5b1cc8ccd310f8740 (patch) | |
| tree | 215852cc15df71129b66f0d5c36ccf46930c8df7 /CMakeLists.txt | |
| parent | e0a92d8c7b5dea290155dd17784686fc9e95a029 (diff) | |
feat(3d): Add scaffolding for visual debugging (Task #18a)
- Added 'src/3d/visual_debug.h/cc' to implement wireframe rendering.
- Integrated VisualDebug into Renderer3D with a static global toggle.
- Added '--debug' command-line option to 'demo64k' and 'test_3d_render' to enable wireframes.
- Updated 'src/gpu/effects/hybrid_3d_effect.h' to expose the debug setter (reverted later as static method used).
- Ensured full cross-platform compatibility (native and Windows) for the new debug module.
- All code guarded by STRIP_ALL for final release.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index c7d5d85..830fd5e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -88,6 +88,7 @@ set(GPU_SOURCES src/gpu/effects/hybrid_3d_effect.cc src/gpu/texture_manager.cc src/3d/renderer.cc + src/3d/visual_debug.cc ) set(PLATFORM_SOURCES src/platform.cc third_party/glfw3webgpu/glfw3webgpu.c) |
