Record STR-033 closeout hash

This commit is contained in:
2026-06-13 23:38:40 +02:00
parent 666c4dd308
commit 8f83145892
2 changed files with 40 additions and 0 deletions

View File

@@ -215,6 +215,10 @@ agent or engineer to remove them without reconstructing context from chat.
branch orchestration now routes through `draw_merge_branch_orchestration(...)`; branch orchestration now routes through `draw_merge_branch_orchestration(...)`;
the retained path still owns the concrete per-branch framebuffer, sampler, the retained path still owns the concrete per-branch framebuffer, sampler,
and texture wiring. and texture wiring.
- 2026-06-13: DEBT-0036 was narrowed again. `Canvas::draw_merge()` final-plane
composite now routes through `draw_merge_final_plane_composite(...)`; the
retained path still owns the concrete merged-texture copy, checkerboard
redraw, and final blend/draw wiring.
- 2026-06-13: DEBT-0036 was narrowed again. `NodeStrokePreview::draw_stroke_immediate()` - 2026-06-13: DEBT-0036 was narrowed again. `NodeStrokePreview::draw_stroke_immediate()`
now routes retained preview feedback/material/composite planning plus stroke now routes retained preview feedback/material/composite planning plus stroke
shader uniform assembly through shader uniform assembly through

View File

@@ -1887,6 +1887,42 @@ ctest --preset desktop-fast --build-config Debug -R "pp_paint_renderer_composito
& 'C:\Program Files\Microsoft Visual Studio\18\Community\MSBuild\Current\Bin\MSBuild.exe' out\build\windows-msvc-default\tests\pp_paint_renderer_compositor_tests.vcxproj /p:Configuration=Debug /p:Platform=x64 & 'C:\Program Files\Microsoft Visual Studio\18\Community\MSBuild\Current\Bin\MSBuild.exe' out\build\windows-msvc-default\tests\pp_paint_renderer_compositor_tests.vcxproj /p:Configuration=Debug /p:Platform=x64
``` ```
### STR-033 - Extract Draw Merge Final Plane Composite
Status: Done
Score: +1 renderer boundary and OpenGL parity
Debt: `DEBT-0036`
Scope: `src/canvas.cpp`, `src/legacy_canvas_draw_merge_services.*`, `tests/paint_renderer/compositor_tests.cpp`
Goal:
Move the final-plane composite call in `Canvas::draw_merge()` behind a
retained helper so the merge path keeps only final-branch selection and
concrete GL object wiring.
Done Checks:
- `Canvas::draw_merge()` no longer owns the final-plane composite call inline.
- Regression coverage proves the final-plane helper preserves ordering and
checkerboard/blend behavior.
- `docs/modernization/debt.md` records the reduced final-plane composite
surface.
Closeout: `666c4dd3`
Validation:
```powershell
ctest --preset desktop-fast --build-config Debug -R "pp_paint_renderer_compositor" --output-onfailure
& 'C:\Program Files\Microsoft Visual Studio\18\Community\MSBuild\Current\Bin\MSBuild.exe' out\build\windows-msvc-default\tests\pp_paint_renderer_compositor_tests.vcxproj /p:Configuration=Debug /p:Platform=x64
```
### Completed Task Log
| Date | Task | Score | Validation | Commit |
| --- | --- | ---: | --- | --- |
| 2026-06-13 | STR-033 | +1 renderer boundary and OpenGL parity | `ctest --preset desktop-fast --build-config Debug -R "pp_paint_renderer_compositor" --output-onfailure`; `& 'C:\Program Files\Microsoft Visual Studio\18\Community\MSBuild\Current\Bin\MSBuild.exe' out\build\windows-msvc-default\tests\pp_paint_renderer_compositor_tests.vcxproj /p:Configuration=Debug /p:Platform=x64` | `666c4dd3` |
### STR-012 - Extract Preview Final Composite Orchestration ### STR-012 - Extract Preview Final Composite Orchestration
Status: Done Status: Done