mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 06:47:34 +00:00
LibWeb: Make two borders joints part painting work
Unify using device pixel to compute step
This commit is contained in:
parent
be280ff3e4
commit
6bd4d44f73
1 changed files with 2 additions and 2 deletions
|
@ -149,8 +149,8 @@ void paint_border(PaintContext& context, BorderEdge edge, DevicePixelRect const&
|
|||
|
||||
auto draw_border = [&](auto const& border, auto const& radius, auto const& opposite_border, auto const& opposite_radius, auto p1_step_translate, auto p2_step_translate) {
|
||||
auto [p1, p2] = points_for_edge(edge, rect);
|
||||
auto p1_step = radius ? 0 : border.width / device_pixel_width.value();
|
||||
auto p2_step = opposite_radius ? 0 : opposite_border.width / device_pixel_width.value();
|
||||
auto p1_step = radius ? 0 : context.enclosing_device_pixels(border.width).value() / device_pixel_width.value();
|
||||
auto p2_step = opposite_radius ? 0 : context.enclosing_device_pixels(opposite_border.width).value() / device_pixel_width.value();
|
||||
for (DevicePixels i = 0; i < device_pixel_width; ++i) {
|
||||
draw_horizontal_or_vertical_line(p1, p2);
|
||||
p1_step_translate(p1, p1_step);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue