1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:17:34 +00:00

LibWeb: Pass border radii data to shadow painting

This is not used yet, but will be needed for painting shadows on
elements that have a border-radius.
This commit is contained in:
MacDue 2022-06-20 12:09:11 +01:00 committed by Linus Groh
parent 5bf84a5b0e
commit 08baeb1e7d
5 changed files with 8 additions and 4 deletions

View file

@ -69,7 +69,7 @@ void InlinePaintable::paint(PaintContext& context, Painting::PaintPhase phase) c
static_cast<int>(layer.spread_distance.to_px(layout_node())),
layer.placement == CSS::ShadowPlacement::Outer ? Painting::ShadowPlacement::Outer : Painting::ShadowPlacement::Inner);
}
Painting::paint_box_shadow(context, enclosing_int_rect(absolute_fragment_rect), resolved_box_shadow_data);
Painting::paint_box_shadow(context, enclosing_int_rect(absolute_fragment_rect), border_radii_data, resolved_box_shadow_data);
}
return IterationDecision::Continue;