1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:07:36 +00:00

LibTTF: Use AffineTransform::multiply() instead of * operator

This commit is contained in:
Stephan Unverwerth 2020-12-29 16:08:07 +01:00 committed by Andreas Kling
parent a060b6cefd
commit 222b7f6c87

View file

@ -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);
}