mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-03 06:39:07 +00:00
LibTTF: Use AffineTransform::multiply() instead of * operator
This commit is contained in:
parent
a060b6cefd
commit
222b7f6c87
Notes:
sideshowbarker
2024-07-19 00:20:29 +09:00
Author: https://github.com/sunverwerth
Commit: 222b7f6c87
Pull-request: https://github.com/SerenityOS/serenity/pull/4631
Issue: https://github.com/SerenityOS/serenity/issues/743
Reviewed-by: https://github.com/alimpfard
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ public:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
auto item = opt_item.value();
|
auto item = opt_item.value();
|
||||||
auto affine_here = affine * item.affine;
|
auto affine_here = affine.multiply(item.affine);
|
||||||
auto glyph = glyph_callback(item.glyph_id);
|
auto glyph = glyph_callback(item.glyph_id);
|
||||||
glyph.raster_inner(rasterizer, affine_here);
|
glyph.raster_inner(rasterizer, affine_here);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue