freetype-commit
[Top][All Lists]
Advanced

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

[freetype2] master b0aacff: [smooth] Remove impossibility.


From: Alexei Podtelezhnikov
Subject: [freetype2] master b0aacff: [smooth] Remove impossibility.
Date: Sat, 1 Oct 2016 16:56:29 +0000 (UTC)

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

    [smooth] Remove impossibility.
    
    * src/smooth/ftgrays.c (TWorker): Rearrange fields.
    (gray_convert_glyph): Remove impossible condition and clean up.
---
 ChangeLog            |    7 +++++++
 src/smooth/ftgrays.c |    9 ++-------
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 6c67f87..183d012 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2016-10-01  Alexei Podtelezhnikov  <address@hidden>
+
+       [smooth] Remove impossibility.
+
+       * src/smooth/ftgrays.c (TWorker): Rearrange fields.
+       (gray_convert_glyph): Remove impossible condition and clean up.
+
 2016-09-29  Werner Lemberg  <address@hidden>
 
        [pcf] Enrich family name with foundry name and glyph width info.
diff --git a/src/smooth/ftgrays.c b/src/smooth/ftgrays.c
index 114657e..7e83fb1 100644
--- a/src/smooth/ftgrays.c
+++ b/src/smooth/ftgrays.c
@@ -443,6 +443,7 @@ typedef ptrdiff_t  FT_PtrDist;
     TCoord  cover;
     int     invalid;
 
+    PCell*      ycells;
     PCell       cells;
     FT_PtrDist  max_cells;
     FT_PtrDist  num_cells;
@@ -455,8 +456,6 @@ typedef ptrdiff_t  FT_PtrDist;
     FT_Raster_Span_Func  render_span;
     void*                render_span_data;
 
-    PCell*     ycells;
-
   } gray_TWorker, *gray_PWorker;
 
 #if defined( _MSC_VER )
@@ -1792,18 +1791,15 @@ typedef ptrdiff_t  FT_PtrDist;
           cell_start = ( ycount * sizeof ( PCell ) + sizeof ( TCell ) - 1 ) /
                        sizeof ( TCell );
 
-          if ( FT_MAX_GRAY_POOL - cell_start < 2 )
-            goto ReduceBands;
-
           ras.cells     = buffer + cell_start;
           ras.max_cells = (FT_PtrDist)( FT_MAX_GRAY_POOL - cell_start );
+          ras.num_cells = 0;
 
           ras.ycells = (PCell*)buffer;
           while ( ycount )
             ras.ycells[--ycount] = NULL;
         }
 
-        ras.num_cells = 0;
         ras.invalid   = 1;
         ras.min_ey    = band[1];
         ras.max_ey    = band[0];
@@ -1819,7 +1815,6 @@ typedef ptrdiff_t  FT_PtrDist;
         else if ( error != ErrRaster_Memory_Overflow )
           return 1;
 
-      ReduceBands:
         /* render pool overflow; we will reduce the render band by half */
         width >>= 1;
 



reply via email to

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