diff options
| author | skal <pascal.massimino@gmail.com> | 2026-02-04 10:22:15 +0100 |
|---|---|---|
| committer | skal <pascal.massimino@gmail.com> | 2026-02-04 10:22:15 +0100 |
| commit | 4194c8d4bbd5bc48c2f50a7377c616f147385016 (patch) | |
| tree | 06b17897a068a45466cfa751a1a1d3449fc6ebf5 /TODO.md | |
| parent | 24d39afe882c92da8a2dfb543b97008cf50d7ec1 (diff) | |
feat(tooling): Implement code coverage reporting (Task #44)
Added CMake support for coverage builds and a script to generate HTML reports using lcov on macOS. Also cleaned up .gitignore.
Diffstat (limited to 'TODO.md')
| -rw-r--r-- | TODO.md | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -3,6 +3,9 @@ This file tracks prioritized tasks with detailed attack plans. ## Recently Completed (February 4, 2026) +- [x] **Task #44: Developer Tooling (Coverage)**: + - [x] **Implement Code Coverage:** Added `DEMO_ENABLE_COVERAGE` CMake option and created `scripts/gen_coverage_report.sh` to generate HTML coverage reports using `lcov` on macOS. + - [x] **Documentation:** Updated `doc/HOWTO.md` with usage instructions. - [x] **Skybox & Two-pass Rendering Stability**: - [x] **Fixed Two-pass Rendering:** Implemented mandatory clear operations for color and depth when the skybox is absent, preventing black screens and depth validation errors. - [x] **Implemented Rotating Skybox:** Added `inv_view_proj` to `GlobalUniforms` and updated the skybox shader to perform world-space ray unprojection, enabling correct rotation with the camera. @@ -46,6 +49,10 @@ This file tracks prioritized tasks with detailed attack plans. - [ ] **Task #37: Asset Ingestion:** Update `asset_packer` to handle the new 3D binary format. - [ ] **Task #38: Runtime Loader:** Implement a minimal C++ parser to load the scene data into the ECS/Renderer. +## Priority 2: Developer Tooling & CI +**Goal**: Improve developer workflows, code quality, and release processes. +*(No active tasks)* + ## Phase 2: Size Optimization (Final Goal) - [ ] **Task #34: Full STL Removal**: Replace all remaining `std::vector`, `std::map`, and `std::string` usage with custom minimal containers or C-style arrays to allow for CRT replacement. (Minimal Priority - deferred to end). @@ -56,9 +63,4 @@ This file tracks prioritized tasks with detailed attack plans. - [ ] **Task #35: CRT Replacement**: investigation and implementation of CRT-free entry point. -## Priority Low: Codebase hygiene -- [ ] ** Task #?: implement an easy-to-use coverage script on MacOS (only). Coverage Report in HTML format would be nice. - - - ## Future Goals |
