Add missing field to impl Hash for RenderGlyphParams (#20316)

Unlikely to cause any behavior change but seems more correct to include
`is_emoji` in the hash.

Release Notes:

- N/A
This commit is contained in:
Michael Sloan 2024-11-07 09:34:54 -07:00 committed by GitHub
parent daa35e98f1
commit e85ab077be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -668,6 +668,7 @@ impl Hash for RenderGlyphParams {
self.font_size.0.to_bits().hash(state);
self.subpixel_variant.hash(state);
self.scale_factor.to_bits().hash(state);
self.is_emoji.hash(state);
}
}