[Mesa-dev] [PATCH 3/4] mesa: Fix gross indenting in _mesa_PolygonMode()

Lyude lyude at redhat.com
Thu Mar 23 00:51:08 UTC 2017


Signed-off-by: Lyude <lyude at redhat.com>
---
 src/mesa/main/polygon.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/mesa/main/polygon.c b/src/mesa/main/polygon.c
index 60af88f..46673ee 100644
--- a/src/mesa/main/polygon.c
+++ b/src/mesa/main/polygon.c
@@ -143,14 +143,13 @@ _mesa_PolygonMode( GLenum face, GLenum mode )
          return;
       }
       if (ctx->Polygon.FrontMode == mode)
-	 return;
+         return;
       FLUSH_VERTICES(ctx, _NEW_POLYGON);
       ctx->Polygon.FrontMode = mode;
       break;
    case GL_FRONT_AND_BACK:
-      if (ctx->Polygon.FrontMode == mode &&
-	  ctx->Polygon.BackMode == mode)
-	 return;
+      if (ctx->Polygon.FrontMode == mode && ctx->Polygon.BackMode == mode)
+         return;
       FLUSH_VERTICES(ctx, _NEW_POLYGON);
       ctx->Polygon.FrontMode = mode;
       ctx->Polygon.BackMode = mode;
@@ -161,7 +160,7 @@ _mesa_PolygonMode( GLenum face, GLenum mode )
          return;
       }
       if (ctx->Polygon.BackMode == mode)
-	 return;
+         return;
       FLUSH_VERTICES(ctx, _NEW_POLYGON);
       ctx->Polygon.BackMode = mode;
       break;
-- 
2.9.3



More information about the mesa-dev mailing list