Record stroke draw samples callback extraction

This commit is contained in:
2026-06-13 23:46:07 +02:00
parent 3c3405d796
commit dbf4db594a
2 changed files with 8 additions and 1 deletions

View File

@@ -320,6 +320,11 @@ agent or engineer to remove them without reconstructing context from chat.
request assembly now routes through `make_stroke_draw_samples_request(...)`;
the retained path still owns the concrete destination-copy dispatch and
brush upload/draw wiring.
- 2026-06-13: DEBT-0036 was narrowed again. `Canvas::stroke_draw_samples()`
destination-texture dispatch now routes through
`make_stroke_draw_samples_destination_texture_dispatch(...)`; the retained
path still owns the concrete destination-copy callback wiring and request
execution.
- 2026-06-13: DEBT-0036 was narrowed again. `Canvas::stroke_draw_samples()`
now routes polygon triangulation, sample-point assembly, and retained
destination-copy / upload / draw helper handoff through

View File

@@ -1956,7 +1956,7 @@ ctest --preset desktop-fast --build-config Debug -R "pp_paint_renderer_stroke_ex
### STR-035 - Extract Stroke Draw Samples Callback Body
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`
@@ -1967,6 +1967,8 @@ Move the remaining `Canvas::stroke_draw_samples()` callback body into a
retained helper so the callsite keeps only request dispatch and dirty-bounds
return handling.
Closeout: `3c3405d7`
Done Checks:
- `Canvas::stroke_draw_samples()` no longer owns the face-sample callback body