[VarComposite] Minor adjust initialization values

This commit is contained in:
Behdad Esfahbod 2023-04-27 11:40:24 -06:00
parent a257546de4
commit cdc02acd3d

View file

@ -173,15 +173,15 @@ struct VarCompositeGlyphRecord
bool get_points (contour_point_vector_t &points) const
{
int translateX = 0.f;
int translateY = 0.f;
int rotation = 0.f;
int scaleX = 1.f * (1 << 10);
int scaleY = 1.f * (1 << 10);
int skewX = 0.f;
int skewY = 0.f;
int tCenterX = 0.f;
int tCenterY = 0.f;
int translateX = 0;
int translateY = 0;
int rotation = 0;
int scaleX = 1 << 10;
int scaleY = 1 << 10;
int skewX = 0;
int skewY = 0;
int tCenterX = 0;
int tCenterY = 0;
unsigned fl = flags;
unsigned num_points = get_num_points ();