mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-04 21:15:06 +00:00
[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:
parent
10f09145ed
commit
73401c67cf
1 changed files with 12 additions and 4 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue