freetype-commit
[Top][All Lists]
Advanced

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

[freetype2] master 44b172e 1/2: [smooth] Improve contour start (take 2).


From: Alexei Podtelezhnikov
Subject: [freetype2] master 44b172e 1/2: [smooth] Improve contour start (take 2).
Date: Wed, 7 Sep 2016 04:00:49 +0000 (UTC)

branch: master
commit 44b172e8839b4e2765a606b6dff10090c3874f20
Author: Alexei Podtelezhnikov <address@hidden>
Commit: Alexei Podtelezhnikov <address@hidden>

    [smooth] Improve contour start (take 2).
    
    * src/smooth/ftgrays.c (gray_move_to): Call `gray_set_cell' directly
    instead of...
    (gray_start_cell): ... this function, which is removed.
    (gray_convert_glyph): Make initial y-coordinate invalid.
---
 ChangeLog            |    9 +++++++++
 src/smooth/ftgrays.c |   31 ++-----------------------------
 2 files changed, 11 insertions(+), 29 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 60438b1..efb1406 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2016-09-06  Alexei Podtelezhnikov  <address@hidden>
+
+       [smooth] Improve contour start (take 2).
+
+       * src/smooth/ftgrays.c (gray_move_to): Call `gray_set_cell' directly
+       instead of...
+       (gray_start_cell): ... this function, which is removed.
+       (gray_convert_glyph): Make initial y-coordinate invalid.
+
 2016-09-06  Werner Lemberg  <address@hidden>
 
        [type1] MM fonts support exactly zero named instances (#48748).
diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c
index f5cf7af..059a6bd 100644
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -605,29 +605,6 @@ typedef ptrdiff_t  FT_PtrDist;
   }
 
 
-  /*************************************************************************/
-  /*                                                                       */
-  /* Start a new contour at a given cell.                                  */
-  /*                                                                       */
-  static void
-  gray_start_cell( RAS_ARG_ TCoord  ex,
-                            TCoord  ey )
-  {
-    if ( ex > ras.max_ex )
-      ex = ras.max_ex;
-
-    if ( ex < ras.min_ex )
-      ex = ras.min_ex - 1;
-
-    ras.area    = 0;
-    ras.cover   = 0;
-    ras.ex      = ex - ras.min_ex;
-    ras.ey      = ey - ras.min_ey;
-    ras.invalid = 0;
-
-    gray_set_cell( RAS_VAR_ ex, ey );
-  }
-
 #ifndef FT_LONG64
 
   /*************************************************************************/
@@ -1224,15 +1201,11 @@ typedef ptrdiff_t  FT_PtrDist;
     TPos  x, y;
 
 
-    /* record current cell, if any */
-    if ( !ras.invalid )
-      gray_record_cell( RAS_VAR );
-
     /* start to a new position */
     x = UPSCALE( to->x );
     y = UPSCALE( to->y );
 
-    gray_start_cell( RAS_VAR_ TRUNC( x ), TRUNC( y ) );
+    gray_set_cell( RAS_VAR_ TRUNC( x ), TRUNC( y ) );
 
     ras.x = x;
     ras.y = y;
@@ -1852,7 +1825,7 @@ typedef ptrdiff_t  FT_PtrDist;
         ras.num_cells = 0;
         ras.invalid   = 1;
         ras.min_ey    = band[1];
-        ras.max_ey    = band[0];
+        ras.max_ey    = ras.ey = band[0];
         ras.count_ey  = width;
 
         error = gray_convert_glyph_inner( RAS_VAR );



reply via email to

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