[fontations] Port to new push_clip_unscaled_glyph

This is wrong though, since the pop_clip won't match the transforms
now.

See: https://github.com/harfbuzz/harfbuzz/pull/5180#issuecomment-2744179719
This commit is contained in:
Behdad Esfahbod 2025-03-21 12:54:29 -06:00
parent 10f09145ed
commit 73401c67cf

View file

@ -548,14 +548,22 @@ impl ColorPainter for HbColorPainter<'_> {
let gid = u32::from(glyph);
self.clip_transform_stack.push(true);
unsafe {
hb_paint_push_inverse_font_transform(self.paint_funcs, self.paint_data, self.font);
hb_paint_push_clip_glyph(
let ret = hb_paint_push_clip_unscaled_glyph(
self.paint_funcs,
self.paint_data,
gid as hb_codepoint_t,
self.font,
);
hb_paint_push_font_transform(self.paint_funcs, self.paint_data, self.font);
) != 0;
if !ret {
hb_paint_push_inverse_font_transform(self.paint_funcs, self.paint_data, self.font);
hb_paint_push_clip_glyph(
self.paint_funcs,
self.paint_data,
gid as hb_codepoint_t,
self.font,
);
hb_paint_push_font_transform(self.paint_funcs, self.paint_data, self.font);
}
}
}
fn push_clip_box(&mut self, bbox: BoundingBox) {