mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
[ft-colr] Fix cycle-detection accounting
Fixes https://github.com/harfbuzz/harfbuzz/issues/5073
This commit is contained in:
parent
ff3aaece6d
commit
215c8de3cd
1 changed files with 3 additions and 1 deletions
|
@ -222,7 +222,9 @@ _hb_ft_paint (hb_ft_paint_context_t *c,
|
|||
&paint.u.colr_layers.layer_iterator,
|
||||
&other_paint))
|
||||
{
|
||||
unsigned i = paint.u.colr_layers.layer_iterator.layer;
|
||||
// FreeType doesn't provide a way to get the layer index, so we use the pointer
|
||||
// for cycle detection.
|
||||
unsigned i = (unsigned) (uintptr_t) other_paint.p;
|
||||
|
||||
if (unlikely (c->current_layers.has (i)))
|
||||
continue;
|
||||
|
|
Loading…
Add table
Reference in a new issue