[paint] Intersect clips

This commit is contained in:
Behdad Esfahbod 2024-09-23 07:00:41 -06:00
parent b0cf3d81ea
commit ed6362600d

View file

@ -70,7 +70,9 @@ struct hb_paint_extents_context_t
const hb_transform_t &t = transforms.tail ();
t.transform_extents (extents);
// TODO Intersect with existing clip?!
auto bounds = hb_bounds_t {extents};
bounds.intersect (clips.tail ());
clips.push (hb_bounds_t {extents});
}