diff options
author | Kenneth Graunke <[email protected]> | 2014-11-24 23:16:56 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-11-29 02:18:36 -0800 |
commit | bea9b8e306e8424ffacbdfc99ca2fc91f1c9912b (patch) | |
tree | ddcbc8e8b6d7c7d5ff972e1c6ce8bac57e938fcc /src/mesa/drivers/dri/i965/gen6_multisample_state.c | |
parent | f3b4b263c2f08f641c42a02bf3c57c3da2fc0414 (diff) |
i965: Alphabetize brw_tracked_state flags and use a consistent style.
Most of the dirty flags were listed in some arbitrary order. Some used
bonus parenthesis. Some put multiple flags on one line, others put one
per line. Some used tabs instead of spaces...but only on some lines.
This patch settles on one flag per line, in alphabetical order, using
spaces instead of tabs, and sheds the unnecessary parentheses.
Sorting was mostly done with vim's visual block feature and !sort,
although I alphabetized short lists by hand; it was pretty manual.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Kristian Høgsberg <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/gen6_multisample_state.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/gen6_multisample_state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/gen6_multisample_state.c b/src/mesa/drivers/dri/i965/gen6_multisample_state.c index ee20c0806de..912da4d4a7e 100644 --- a/src/mesa/drivers/dri/i965/gen6_multisample_state.c +++ b/src/mesa/drivers/dri/i965/gen6_multisample_state.c @@ -203,8 +203,8 @@ static void upload_multisample_state(struct brw_context *brw) const struct brw_tracked_state gen6_multisample_state = { .dirty = { .mesa = _NEW_MULTISAMPLE, - .brw = (BRW_NEW_CONTEXT | - BRW_NEW_NUM_SAMPLES), + .brw = BRW_NEW_CONTEXT | + BRW_NEW_NUM_SAMPLES, .cache = 0 }, .emit = upload_multisample_state |