freetype-commit
[Top][All Lists]
Advanced

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

[freetype2] gsoc-2023-ahmet-final d71c0b4c0: [bench] fixing some intenda


From: Werner Lemberg
Subject: [freetype2] gsoc-2023-ahmet-final d71c0b4c0: [bench] fixing some intendation mistakes
Date: Mon, 25 Sep 2023 03:34:40 -0400 (EDT)

branch: gsoc-2023-ahmet-final
commit d71c0b4c0e9da84d00dc70360d6b874939ce831b
Author: goksu <25721443+goeksu@users.noreply.github.com>
Commit: goksu <25721443+goeksu@users.noreply.github.com>

    [bench] fixing some intendation mistakes
---
 src/tools/ftbench/ftbench.c | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/src/tools/ftbench/ftbench.c b/src/tools/ftbench/ftbench.c
index 5ac3de9e2..3047f0dc1 100644
--- a/src/tools/ftbench/ftbench.c
+++ b/src/tools/ftbench/ftbench.c
@@ -383,7 +383,7 @@
         continue;
 
             if ( !FT_Render_Glyph( face->glyph, render_mode ) )
-        done++;
+              done++;
           }
 
     return done;
@@ -404,9 +404,9 @@
       if ( FT_Load_Glyph( face, (FT_UInt)i, load_flags ) )
         continue;
 
-            FT_GlyphSlot_Embolden( face->glyph );
+      FT_GlyphSlot_Embolden( face->glyph );
       done++;
-          }
+    }
 
     return done;
   }
@@ -437,7 +437,7 @@
            FT_Get_Glyph( face->glyph, &glyph )            )
         continue;
 
-            FT_Glyph_Stroke( &glyph, stroker, 1 );
+      FT_Glyph_Stroke( &glyph, stroker, 1 );
 
       FT_Done_Glyph( glyph );
       done++;
@@ -465,12 +465,12 @@
       if ( FT_Load_Glyph( face, (FT_UInt)i, load_flags ) )
         continue;
 
-            if ( !FT_Get_Glyph( face->glyph, &glyph ) )
+      if ( !FT_Get_Glyph( face->glyph, &glyph ) )
       {
         FT_Done_Glyph( glyph );
         done++;
       }
-          }
+    }
 
     return done;
   }
@@ -496,7 +496,7 @@
       if ( FT_Get_Glyph( face->glyph, &glyph ) )
         continue;
 
-            FT_Glyph_Get_CBox( glyph, FT_GLYPH_BBOX_PIXELS, &bbox );
+      FT_Glyph_Get_CBox( glyph, FT_GLYPH_BBOX_PIXELS, &bbox );
 
       FT_Done_Glyph( glyph );
       done++;
@@ -522,7 +522,7 @@
       if ( FT_Load_Glyph( face, (FT_UInt)i, load_flags ) )
         continue;
 
-            FT_Outline_Get_BBox( &face->glyph->outline, &bbox );
+      FT_Outline_Get_BBox( &face->glyph->outline, &bbox );
 
       done++;
     }
@@ -639,7 +639,7 @@
     while ( idx != 0 )
       charcode = FT_Get_Next_Char( face, charcode, &idx );
 
-        return done;
+    return done;
   }
 
 
@@ -656,7 +656,7 @@
     if ( !get_face( &bench_face ) )
       FT_Done_Face( bench_face );
 
-        return 1;
+    return 1;
   }
 
 



reply via email to

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