diff options
author | Brian Paul <[email protected]> | 2016-01-05 13:04:46 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-01-05 13:04:46 -0700 |
commit | a13e9adbee2f273ced137f96b770aff7181b363c (patch) | |
tree | 12d97b6cac8363fc4ef3fb30bb2510b5bc8ba524 /src | |
parent | f4caa7d2fcbfd64d8858a502d1deed8e56109464 (diff) |
st/mesa: minor indentation fixes
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/state_tracker/st_atom_rasterizer.c | 8 |
1 files 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 55d5e66243c..c20cadf508f 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; |