mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 14:05:05 +00:00
[VarComposite] Minor adjust initialization values
This commit is contained in:
parent
a257546de4
commit
cdc02acd3d
1 changed files with 9 additions and 9 deletions
|
@ -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 ();
|
||||
|
|
Loading…
Add table
Reference in a new issue