[glyf] Optimize contour_point_t layout

This commit is contained in:
Behdad Esfahbod 2022-06-27 11:56:28 -06:00
parent 75ca78a6bb
commit cfc57ef862
1 changed files with 1 additions and 1 deletions

View File

@ -45,9 +45,9 @@ struct contour_point_t
void translate (const contour_point_t &p) { x += p.x; y += p.y; }
uint8_t flag = 0;
float x = 0.f;
float y = 0.f;
uint8_t flag = 0;
bool is_end_point = false;
};