freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[freetype2] GSoC-2017-ewaldhew-wip ff274fd 2/2: (test) mulfix perf


From: Hew Yih Shiuan Ewald
Subject: [freetype2] GSoC-2017-ewaldhew-wip ff274fd 2/2: (test) mulfix perf
Date: Sun, 27 Aug 2017 20:36:44 -0400 (EDT)

branch: GSoC-2017-ewaldhew-wip
commit ff274fd8cf29453ea2140be9bcfdb1d51db63cf6
Author: Ewald Hew <address@hidden>
Commit: Ewald Hew <address@hidden>

    (test) mulfix perf
---
 src/psaux/pshints.c | 46 +++++++++++++++++++++++-----------------------
 1 file changed, 23 insertions(+), 23 deletions(-)

diff --git a/src/psaux/pshints.c b/src/psaux/pshints.c
index 97773d4..2aef5fd 100644
--- a/src/psaux/pshints.c
+++ b/src/psaux/pshints.c
@@ -1171,21 +1171,21 @@
     FT_Vector  pt;   /* hinted point in upright DS */
 
 
-    pt.x = ADD_INT32( FT_MulFix( glyphpath->scaleX, x ),
-                      FT_MulFix( glyphpath->scaleC, y ) );
+    pt.x = ADD_INT32( FT_MulFix( x, glyphpath->scaleX ),
+                      FT_MulFix( y, glyphpath->scaleC ) );
     pt.y = hintmap ? cf2_hintmap_map( hintmap, y )
-                   : FT_MulFix( glyphpath->scaleY, y );
+                   : FT_MulFix( y, glyphpath->scaleY );
 
 
     ppt->x = ADD_INT32(
-               FT_MulFix( glyphpath->font->outerTransform.a, pt.x ),
+               FT_MulFix( pt.x, glyphpath->font->outerTransform.a ),
                ADD_INT32(
-                 FT_MulFix( glyphpath->font->outerTransform.c, pt.y ),
+                 FT_MulFix( pt.y, glyphpath->font->outerTransform.c ),
                  glyphpath->fractionalTranslation.x ) );
     ppt->y = ADD_INT32(
-               FT_MulFix( glyphpath->font->outerTransform.b, pt.x ),
+               FT_MulFix( pt.x, glyphpath->font->outerTransform.b ),
                ADD_INT32(
-                 FT_MulFix( glyphpath->font->outerTransform.d, pt.y ),
+                 FT_MulFix( pt.y, glyphpath->font->outerTransform.d ),
                  glyphpath->fractionalTranslation.y ) );
   }
 
@@ -1580,10 +1580,10 @@
         else
         {
           /* +x +y */
-          *x = FT_MulFix( cf2_doubleToFixed( 0.7 ),
-                          glyphpath->xOffset );
-          *y = FT_MulFix( cf2_doubleToFixed( 1.0 - 0.7 ),
-                          glyphpath->yOffset );
+          *x = FT_MulFix( glyphpath->xOffset,
+                          cf2_doubleToFixed( 0.7 ) );
+          *y = FT_MulFix( glyphpath->yOffset,
+                          cf2_doubleToFixed( 1.0 - 0.7 ) );
         }
       }
       else
@@ -1605,10 +1605,10 @@
         else
         {
           /* +x -y */
-          *x = FT_MulFix( cf2_doubleToFixed( -0.7 ),
-                          glyphpath->xOffset );
-          *y = FT_MulFix( cf2_doubleToFixed( 1.0 - 0.7 ),
-                          glyphpath->yOffset );
+          *x = FT_MulFix( glyphpath->xOffset,
+                          cf2_doubleToFixed( -0.7 ) );
+          *y = FT_MulFix( glyphpath->yOffset,
+                          cf2_doubleToFixed( 1.0 - 0.7 ) );
         }
       }
     }
@@ -1633,10 +1633,10 @@
         else
         {
           /* -x +y */
-          *x = FT_MulFix( cf2_doubleToFixed( 0.7 ),
-                          glyphpath->xOffset );
-          *y = FT_MulFix( cf2_doubleToFixed( 1.0 + 0.7 ),
-                          glyphpath->yOffset );
+          *x = FT_MulFix( glyphpath->xOffset,
+                          cf2_doubleToFixed( 0.7 ) );
+          *y = FT_MulFix( glyphpath->yOffset,
+                          cf2_doubleToFixed( 1.0 + 0.7 ) );
         }
       }
       else
@@ -1658,10 +1658,10 @@
         else
         {
           /* -x -y */
-          *x = FT_MulFix( cf2_doubleToFixed( -0.7 ),
-                          glyphpath->xOffset );
-          *y = FT_MulFix( cf2_doubleToFixed( 1.0 + 0.7 ),
-                          glyphpath->yOffset );
+          *x = FT_MulFix( glyphpath->xOffset,
+                          cf2_doubleToFixed( -0.7 ) );
+          *y = FT_MulFix( glyphpath->yOffset,
+                          cf2_doubleToFixed( 1.0 + 0.7 ) );
         }
       }
     }



reply via email to

[Prev in Thread] Current Thread [Next in Thread]