diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-06 06:57:04 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-06 06:57:04 +0100 |
| commit | c3d3fe94f59a9929387ea1f47ad1b56792411ff9 (patch) | |
| tree | abffd1bf16ac3a07e3a746dd673bb4585da90ada /CMakeLists.txt | |
| parent | b68c8d8cbe9274e42a89888186152d4ded1a2962 (diff) | |
refactor(3d): Split Renderer3D into sub-functionalities
Moved SDF, Mesh, and Skybox logic into separate files to adhere to the 500-line file limit rule.
- src/3d/renderer_sdf.cc
- src/3d/renderer_mesh.cc
- src/3d/renderer_skybox.cc
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2a779fc..8e79ba4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -109,6 +109,9 @@ set(GPU_SOURCES ) set(3D_SOURCES src/3d/renderer.cc + src/3d/renderer_sdf.cc + src/3d/renderer_mesh.cc + src/3d/renderer_skybox.cc src/3d/visual_debug.cc src/3d/bvh.cc src/3d/physics.cc |
