Extract pad destination dispatch helper

This commit is contained in:
2026-06-13 23:14:35 +02:00
parent 59a83468a6
commit 4bca83982c
4 changed files with 69 additions and 23 deletions

View File

@@ -547,6 +547,10 @@ agent or engineer to remove them without reconstructing context from chat.
- 2026-06-13: DEBT-0036 was narrowed again. `Canvas::stroke_draw()` dual-pass
shader setup now uses a retained wrapper helper; the dual-pass branch still
owns the concrete shader selection and framebuffer wiring.
- 2026-06-13: DEBT-0036 was narrowed again. `Canvas::stroke_draw()` pad
destination dispatch now reuses a retained helper object, with regression
coverage proving the helper order; the pad branch still owns the concrete
texture-object wiring and copy timing.
- 2026-06-13: DEBT-0036 was narrowed again. `Canvas::draw_merge` checkerboard
background shader setup and final merged-texture redraw setup now route
through `legacy_canvas_draw_merge_services.h`. The retained Canvas path still

View File

@@ -791,7 +791,7 @@ ctest --preset desktop-fast --build-config Debug -R "pp_paint_renderer_composito
### STR-027 - Extract Stroke Draw Pad Destination Dispatch
Status: Ready
Status: Done
Score: +1 renderer boundary and OpenGL parity
Debt: `DEBT-0036`
Scope: `src/canvas.cpp`, `src/legacy_canvas_stroke_execution_services.h`, `tests/paint_renderer/compositor_tests.cpp`
@@ -817,6 +817,12 @@ Validation:
ctest --preset desktop-fast --build-config Debug -R "pp_paint_renderer_compositor|pp_paint_renderer_stroke_execution" --output-onfailure
```
### Completed Task Log
| Date | Task | Score | Validation | Commit |
| --- | --- | --- | --- | --- |
| 2026-06-13 | STR-027 | +1 renderer boundary and OpenGL parity | `ctest --preset desktop-fast --build-config Debug -R "pp_paint_renderer_compositor|pp_paint_renderer_stroke_execution" --output-onfailure` | `pending` |
### STR-028 - Extract Stroke Draw Pad Face Orchestration
Status: Ready