Normalize STR-016 tracker state

This commit is contained in:
2026-06-15 23:38:55 +02:00
parent edd672d1a3
commit fb7fab24f4
3 changed files with 27 additions and 35 deletions

View File

@@ -401,24 +401,22 @@ agent or engineer to remove them without reconstructing context from chat.
now drops the unused `draw_checkerboard` flag from the branch helper chain,
shrinking the helper API mismatch while `Canvas::draw_merge_branch_orchestration()`
still owns the remaining branch orchestration.
- 2026-06-13: `STR-016` completed in `b9ed78e1`. The per-layer composite block
moved out of `Canvas::draw_merge()`, and the helper-shape cleanup that had
been keeping the extraction blocked now reads as completed historical
context rather than a live blocker.
- 2026-06-15: `DEBT-0036` was narrowed again. `Canvas::draw_merge_branch_orchestration()`
now drops the unused `draw_checkerboard` parameter from the internal branch
wrapper, shrinking the remaining call-shape mismatch while the draw-merge
extraction remains blocked by the helper API shape mismatch.
- 2026-06-15: `DEBT-0036` was narrowed again. `Canvas::draw_merge_temporary_paint_branch()`
now drops the unused `copy_blend_destination` parameter from the temporary-paint
wrapper, shrinking the remaining draw-merge helper API mismatch while the
extraction remains blocked by the helper API shape mismatch.
wrapper, and `Canvas::draw_merge_temporary_paint_branch()` now drops the
unused `copy_blend_destination` parameter from the temporary-paint wrapper,
but those changes are follow-on cleanup after `STR-016`, not blockers on the
completed extraction.
- 2026-06-15: `DEBT-0036` was narrowed again. The stale
`make_canvas_draw_merge_branch_dispatch(...)` forward declaration in
`src/canvas.cpp` now matches the 7-argument implementation, shrinking the
remaining draw-merge helper API mismatch while the extraction remains blocked
by the helper API shape mismatch.
- 2026-06-15: `DEBT-0036` was narrowed again. The remaining
`Canvas::draw_merge()` inline-default comment in `src/canvas.cpp` now
matches the header's `SIXPLETTE(true)` default, so the draw-merge mismatch
is comment-only and aligned while the extraction remains blocked by the
helper API shape mismatch.
`src/canvas.cpp` now matches the 7-argument implementation, and the
remaining `Canvas::draw_merge()` inline-default comment in `src/canvas.cpp`
now matches the header's `SIXPLETTE(true)` default; both are historical
cleanup notes after `STR-016`, not reasons the task stayed blocked.
- 2026-06-14: `DEBT-0036` was narrowed again. `Canvas::draw_merge_branch_orchestration()`
now routes the temporary erase, temporary paint, texture, and blend dispatch
bodies through retained helpers inside `execute_canvas_draw_merge_branch_body(...)`;