mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 21:45:06 +00:00
[instancer] make varstore items sorting method match fonttool's
Also update expected tests
This commit is contained in:
parent
b5f7ca1ab4
commit
ef4ff1d6a4
9 changed files with 8 additions and 1 deletions
|
@ -2174,7 +2174,14 @@ struct item_variations_t
|
|||
const hb_vector_t<int>** a = (const hb_vector_t<int>**) pa;
|
||||
const hb_vector_t<int>** b = (const hb_vector_t<int>**) pb;
|
||||
|
||||
return ((*b)->as_array ()).cmp ((*a)->as_array ());
|
||||
for (unsigned i = 0; i < (*b)->length; i++)
|
||||
{
|
||||
int va = (*a)->arrayZ[i];
|
||||
int vb = (*b)->arrayZ[i];
|
||||
if (va != vb)
|
||||
return va < vb ? -1 : 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Add table
Reference in a new issue