st/mesa: minor indentation fixes
authorBrian Paul <brianp@vmware.com>
Tue, 5 Jan 2016 20:04:46 +0000 (13:04 -0700)
committerBrian Paul <brianp@vmware.com>
Tue, 5 Jan 2016 20:04:46 +0000 (13:04 -0700)
src/mesa/state_tracker/st_atom_rasterizer.c

index 55d5e66..c20cadf 100644 (file)
@@ -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;