diff options
author | Lyude <[email protected]> | 2017-03-22 20:51:08 -0400 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2017-03-30 11:59:51 -0700 |
commit | 043ee960597075bb2ed10316ba0ed8b1fa412be7 (patch) | |
tree | a5e8bc664491593a7dc9f09877e7953e12873a60 /src/mesa | |
parent | a1ce8a3fe2f46a187e40f60c6c29083d0a2de729 (diff) |
mesa: Fix gross indenting in _mesa_PolygonMode()
Signed-off-by: Lyude <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/polygon.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/mesa/main/polygon.c b/src/mesa/main/polygon.c index 60af88f9857..46673ee7ca8 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; |