Mesa (master): st/mesa: minor indentation fixes

Brian Paul brianp at kemper.freedesktop.org
Tue Jan 5 20:04:16 UTC 2016


Module: Mesa
Branch: master
Commit: a13e9adbee2f273ced137f96b770aff7181b363c
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a13e9adbee2f273ced137f96b770aff7181b363c

Author: Brian Paul <brianp at vmware.com>
Date:   Tue Jan  5 13:04:46 2016 -0700

st/mesa: minor indentation fixes

---

 src/mesa/state_tracker/st_atom_rasterizer.c |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/mesa/state_tracker/st_atom_rasterizer.c b/src/mesa/state_tracker/st_atom_rasterizer.c
index 55d5e66..c20cadf 100644
--- a/src/mesa/state_tracker/st_atom_rasterizer.c
+++ b/src/mesa/state_tracker/st_atom_rasterizer.c
@@ -220,13 +220,13 @@ static void update_raster_state( struct st_context *st )
    raster->line_smooth = ctx->Line.SmoothFlag;
    if (ctx->Line.SmoothFlag) {
       raster->line_width = CLAMP(ctx->Line.Width,
-                                ctx->Const.MinLineWidthAA,
-                                ctx->Const.MaxLineWidthAA);
+                                 ctx->Const.MinLineWidthAA,
+                                 ctx->Const.MaxLineWidthAA);
    }
    else {
       raster->line_width = CLAMP(ctx->Line.Width,
-                                ctx->Const.MinLineWidth,
-                                ctx->Const.MaxLineWidth);
+                                 ctx->Const.MinLineWidth,
+                                 ctx->Const.MaxLineWidth);
    }
 
    raster->line_stipple_enable = ctx->Line.StippleFlag;




More information about the mesa-commit mailing list