Record STR-055 closeout hash

This commit is contained in:
2026-06-14 05:27:52 +02:00
parent d5af0b984e
commit cd9b517bfd
2 changed files with 25 additions and 0 deletions

View File

@@ -18,6 +18,10 @@ agent or engineer to remove them without reconstructing context from chat.
## Recent Reductions ## Recent Reductions
- 2026-06-14: `DEBT-0036` was narrowed again. `Canvas::stroke_commit()` now
routes the retained request build and execution through
`execute_canvas_stroke_commit_request(...)`; the wrapper still owns the
sequence plan assembly and dispatch.
- 2026-06-14: `DEBT-0036` was narrowed again. `Canvas::draw_merge_final_plane_composite()` - 2026-06-14: `DEBT-0036` was narrowed again. `Canvas::draw_merge_final_plane_composite()`
now routes the retained final-plane composite execution through now routes the retained final-plane composite execution through
`make_canvas_draw_merge_final_plane_composite_execution(...)`; the wrapper `make_canvas_draw_merge_final_plane_composite_execution(...)`; the wrapper

View File

@@ -2283,6 +2283,27 @@ Done Checks:
- `docs/modernization/debt.md` records the reduced draw-merge final-plane - `docs/modernization/debt.md` records the reduced draw-merge final-plane
surface. surface.
### STR-055 - Extract Stroke Commit Sequence Wrapper
Status: Done
Score: no score movement
Debt: `DEBT-0036`
Scope: `src/canvas.cpp`, `tests/paint_renderer/stroke_execution_tests.cpp`
Closeout: `d5af0b98`
Goal:
Move the remaining `Canvas::stroke_commit()` sequence wrapper into a retained
helper so the callsite keeps only request assembly and dispatch.
Done Checks:
- `Canvas::stroke_commit()` no longer owns the sequence wrapper inline.
- Regression coverage proves the extracted helper preserves the commit request
build and execution order.
- `docs/modernization/debt.md` records the reduced stroke-commit wrapper
surface.
Validation: Validation:
```powershell ```powershell