[ot-shape] Micro-optimize ::equal

For two integers, it's faster to compare them directly.
This commit is contained in:
Behdad Esfahbod 2025-02-01 14:23:47 +00:00
parent 6d8035a99c
commit 9ba286de08

View file

@ -51,7 +51,8 @@ struct hb_ot_shape_plan_key_t
bool equal (const hb_ot_shape_plan_key_t *other)
{
return 0 == hb_memcmp (this, other, sizeof (*this));
return variations_index[0] == other->variations_index[0] &&
variations_index[1] == other->variations_index[1];
}
};