Wrap stroke mix shell bundle

This commit is contained in:
2026-06-13 19:21:42 +02:00
parent a428f77db6
commit a6855fca05
5 changed files with 132 additions and 58 deletions

View File

@@ -18,6 +18,10 @@ agent or engineer to remove them without reconstructing context from chat.
## Recent Reductions ## Recent Reductions
- 2026-06-13: `LATER-003` was narrowed again. `Canvas::stroke_draw_mix()` now
routes the combined setup and request bundle through
`make_legacy_canvas_stroke_mix_pass_shell(...)`; the live path still owns
the concrete framebuffer bind and GL capability toggles.
- 2026-06-13: `LATER-003` was narrowed again. `Canvas::stroke_draw_mix()` now - 2026-06-13: `LATER-003` was narrowed again. `Canvas::stroke_draw_mix()` now
routes the retained mix-pass shell through routes the retained mix-pass shell through
`execute_legacy_canvas_stroke_mix_pass_shell(...)`; the live path still owns `execute_legacy_canvas_stroke_mix_pass_shell(...)`; the live path still owns

View File

@@ -604,6 +604,10 @@ Progress Notes:
- 2026-06-13: `Canvas::stroke_draw_mix()` now routes the retained mix-pass - 2026-06-13: `Canvas::stroke_draw_mix()` now routes the retained mix-pass
shell through `execute_legacy_canvas_stroke_mix_pass_shell(...)`; the live shell through `execute_legacy_canvas_stroke_mix_pass_shell(...)`; the live
path still owns the concrete framebuffer bind and GL capability toggles. path still owns the concrete framebuffer bind and GL capability toggles.
- 2026-06-13: `Canvas::stroke_draw_mix()` now routes the combined setup and
request bundle through `make_legacy_canvas_stroke_mix_pass_shell(...)`; the
live path still owns the concrete framebuffer bind and GL capability
toggles.
- 2026-06-13: `Canvas::stroke_draw()` live-pass sampler wiring now reuses a - 2026-06-13: `Canvas::stroke_draw()` live-pass sampler wiring now reuses a
retained helper builder, and the stroke execution tests cover it. `STR-004` retained helper builder, and the stroke execution tests cover it. `STR-004`
is now done after the final pad-destination helper extraction and tracker is now done after the final pad-destination helper extraction and tracker

View File

@@ -403,7 +403,7 @@ void Canvas::stroke_draw_mix(const glm::vec2& bb_min, const glm::vec2& bb_sz)
return current_layer.face(plane_index); return current_layer.face(plane_index);
}); });
const auto& b = m_current_stroke->m_brush; const auto& b = m_current_stroke->m_brush;
const auto mix_setup = pp::panopainter::make_legacy_canvas_stroke_mix_pass_setup( const auto mix_shell = pp::panopainter::make_legacy_canvas_stroke_mix_pass_shell(
[&] { [&] {
m_mixer.bindFramebuffer(); m_mixer.bindFramebuffer();
apply_canvas_viewport(0, 0, m_mixer.getWidth(), m_mixer.getHeight()); apply_canvas_viewport(0, 0, m_mixer.getWidth(), m_mixer.getHeight());
@@ -421,63 +421,9 @@ void Canvas::stroke_draw_mix(const glm::vec2& bb_min, const glm::vec2& bb_sz)
}); });
[[maybe_unused]] const auto mix_result = [[maybe_unused]] const auto mix_result =
pp::panopainter::execute_legacy_canvas_stroke_mix_pass_shell( pp::panopainter::execute_legacy_canvas_stroke_mix_pass_shell(
mix_setup.begin, mix_shell.setup.begin,
mix_setup.end, mix_shell.setup.end,
pp::panopainter::make_legacy_canvas_stroke_mix_pass_request( mix_shell.request);
"Canvas::stroke_draw_mix",
m_size,
mix_planes,
[&] {
m_sampler.bind(0);
m_sampler.bind(1);
m_sampler.bind(2);
},
[&] {
m_sampler.unbind();
},
[&](int plane_index, const glm::mat4& plane_mvp_z) {
(void)plane_index;
pp::panopainter::setup_legacy_stroke_composite_shader(
pp::panopainter::LegacyStrokeCompositeUniforms {
.resolution = m_size,
.mvp = plane_mvp_z,
.pattern_texture_slot = 3,
.layer_alpha = 1.0f,
.alpha_lock = false, /*current_layer.m_alpha_locked*/
.mask_enabled = false, /*m_smask_active*/
.use_fragcoord = false,
.blend_mode = b->m_blend_mode,
.use_dual = false,
.use_pattern = false,
});
},
[&](int plane_index) {
set_active_texture_unit(0);
current_layer.rtt(plane_index).bindTexture();
},
[&](int plane_index) {
set_active_texture_unit(1);
m_tmp[plane_index].bindTexture();
},
[&](int plane_index) {
set_active_texture_unit(2);
m_smask.rtt(plane_index).bindTexture();
},
[&] {
m_node->m_face_plane.draw_fill();
},
[&](int plane_index) {
set_active_texture_unit(2);
m_smask.rtt(plane_index).unbindTexture();
},
[&](int plane_index) {
set_active_texture_unit(1);
m_tmp[plane_index].unbindTexture();
},
[&](int plane_index) {
set_active_texture_unit(0);
current_layer.rtt(plane_index).unbindTexture();
}));
gl.restore(); gl.restore();
} }

View File

@@ -387,6 +387,50 @@ struct LegacyCanvasStrokeMixPassSetup {
}; };
} }
struct LegacyCanvasStrokeMixPassShell {
LegacyCanvasStrokeMixPassSetup setup;
LegacyCanvasStrokeMixPassRequest request;
};
template <typename BeginMixPass, typename EndMixPass>
[[nodiscard]] inline LegacyCanvasStrokeMixPassShell make_legacy_canvas_stroke_mix_pass_shell(
BeginMixPass&& begin_mix_pass,
EndMixPass&& end_mix_pass,
std::string_view context,
glm::vec2 resolution,
std::span<const LegacyCanvasStrokeMixPassPlane> planes,
std::function<void()> bind_mix_samplers,
std::function<void()> unbind_mix_samplers,
std::function<void(int, const glm::mat4&)> setup_plane_shader,
std::function<void(int)> bind_layer_texture,
std::function<void(int)> bind_stroke_texture,
std::function<void(int)> bind_mask_texture,
std::function<void()> draw_plane,
std::function<void(int)> unbind_mask_texture,
std::function<void(int)> unbind_stroke_texture,
std::function<void(int)> unbind_layer_texture)
{
return LegacyCanvasStrokeMixPassShell {
.setup = make_legacy_canvas_stroke_mix_pass_setup(
std::forward<BeginMixPass>(begin_mix_pass),
std::forward<EndMixPass>(end_mix_pass)),
.request = make_legacy_canvas_stroke_mix_pass_request(
context,
resolution,
planes,
std::move(bind_mix_samplers),
std::move(unbind_mix_samplers),
std::move(setup_plane_shader),
std::move(bind_layer_texture),
std::move(bind_stroke_texture),
std::move(bind_mask_texture),
std::move(draw_plane),
std::move(unbind_mask_texture),
std::move(unbind_stroke_texture),
std::move(unbind_layer_texture)),
};
}
struct LegacyCanvasStrokeDualPassRequest { struct LegacyCanvasStrokeDualPassRequest {
std::string_view context; std::string_view context;
std::function<void()> bind_brush_tip; std::function<void()> bind_brush_tip;

View File

@@ -1903,6 +1903,79 @@ void retained_stroke_mix_pass_setup_builder_preserves_boundaries(pp::tests::Harn
PP_EXPECT(h, events[1] == "end"); PP_EXPECT(h, events[1] == "end");
} }
void retained_stroke_mix_pass_shell_builder_preserves_combined_wiring(pp::tests::Harness& h)
{
const std::array<LegacyCanvasStrokeMixPassPlane, 1> planes {
LegacyCanvasStrokeMixPassPlane { .index = 2, .visible = true, .has_target = true, .opacity = 1.0F },
};
std::vector<std::string> events;
const auto shell = pp::panopainter::make_legacy_canvas_stroke_mix_pass_shell(
[&] { events.emplace_back("begin"); },
[&] { events.emplace_back("end"); },
"mix-shell",
glm::vec2(64.0F, 32.0F),
planes,
[&] { events.emplace_back("bind-samplers"); },
[&] { events.emplace_back("unbind-samplers"); },
[&](int plane_index, const glm::mat4&) {
events.emplace_back("setup:" + std::to_string(plane_index));
},
[&](int plane_index) {
events.emplace_back("bind-layer:" + std::to_string(plane_index));
},
[&](int plane_index) {
events.emplace_back("bind-stroke:" + std::to_string(plane_index));
},
[&](int plane_index) {
events.emplace_back("bind-mask:" + std::to_string(plane_index));
},
[&] { events.emplace_back("draw"); },
[&](int plane_index) {
events.emplace_back("unbind-mask:" + std::to_string(plane_index));
},
[&](int plane_index) {
events.emplace_back("unbind-stroke:" + std::to_string(plane_index));
},
[&](int plane_index) {
events.emplace_back("unbind-layer:" + std::to_string(plane_index));
});
PP_EXPECT(h, shell.setup.begin);
PP_EXPECT(h, shell.setup.end);
PP_EXPECT(h, shell.request.context == "mix-shell");
PP_EXPECT(h, shell.request.planes.size() == 1U);
shell.setup.begin();
shell.request.bind_mix_samplers();
shell.request.setup_plane_shader(2, glm::mat4(1.0F));
shell.request.bind_layer_texture(2);
shell.request.bind_stroke_texture(2);
shell.request.bind_mask_texture(2);
shell.request.draw_plane();
shell.request.unbind_mask_texture(2);
shell.request.unbind_stroke_texture(2);
shell.request.unbind_layer_texture(2);
shell.request.unbind_mix_samplers();
shell.setup.end();
const std::vector<std::string> expected_events {
"begin",
"bind-samplers",
"setup:2",
"bind-layer:2",
"bind-stroke:2",
"bind-mask:2",
"draw",
"unbind-mask:2",
"unbind-stroke:2",
"unbind-layer:2",
"unbind-samplers",
"end",
};
PP_EXPECT(h, events == expected_events);
}
} // namespace } // namespace
int main() int main()
@@ -2013,5 +2086,8 @@ int main()
harness.run( harness.run(
"retained_stroke_mix_pass_setup_builder_preserves_boundaries", "retained_stroke_mix_pass_setup_builder_preserves_boundaries",
retained_stroke_mix_pass_setup_builder_preserves_boundaries); retained_stroke_mix_pass_setup_builder_preserves_boundaries);
harness.run(
"retained_stroke_mix_pass_shell_builder_preserves_combined_wiring",
retained_stroke_mix_pass_shell_builder_preserves_combined_wiring);
return harness.finish(); return harness.finish();
} }