mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:57:44 +00:00
LibTTF: Use AffineTransform::multiply() instead of * operator
This commit is contained in:
parent
a060b6cefd
commit
222b7f6c87
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ public:
|
|||
break;
|
||||
}
|
||||
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);
|
||||
glyph.raster_inner(rasterizer, affine_here);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue