shithub: freetype+ttf2subf

Download patch

ref: bdab6578af27719a613488d46acc5d69653943f8
parent: 068a7a03aa1943c59dfd490773156cb9245879db
author: Matthias Clasen <[email protected]>
date: Mon Dec 18 15:45:17 EST 2017

[truetype] Minor code beautification.

* src/truetype/ttgxvar.c (ft_var_to_normalized): Trace number of
design coordinates.
Simplify code.

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2017-12-18  Matthias Clasen  <[email protected]>
+
+	[truetype] Minor code beautification.
+
+	* src/truetype/ttgxvar.c (ft_var_to_normalized): Trace number of
+	design coordinates.
+	Simplify code.
+
 2017-12-18  Werner Lemberg  <[email protected]>
 
 	* src/*/*: Only use `ft_' and `FT_' variants of stdc library stuff.
--- a/src/truetype/ttgxvar.c
+++ b/src/truetype/ttgxvar.c
@@ -1733,7 +1733,9 @@
     /* based on the [min,def,max] values for the axis to be [-1,0,1]. */
     /* Then, if there's an `avar' table, we renormalize this range.   */
 
-    FT_TRACE5(( "design coordinates:\n" ));
+    FT_TRACE5(( "%d design coordinate%s:\n",
+                num_coords,
+                num_coords == 1 ? "" : "s" ));
 
     a = mmvar->axis;
     for ( i = 0; i < num_coords; i++, a++ )
@@ -1758,10 +1760,10 @@
       }
 
       if ( coord < a->def )
-        normalized[i] = -FT_DivFix( coords[i] - a->def,
+        normalized[i] = -FT_DivFix( coord - a->def,
                                     a->minimum - a->def );
       else if ( coord > a->def )
-        normalized[i] = FT_DivFix( coords[i] - a->def,
+        normalized[i] = FT_DivFix( coord - a->def,
                                    a->maximum - a->def );
       else
         normalized[i] = 0;