summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/gen8_multisample_state.c
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2014-11-24 23:16:56 -0800
committerKenneth Graunke <kenneth@whitecape.org>2014-11-29 02:18:36 -0800
commitbea9b8e306e8424ffacbdfc99ca2fc91f1c9912b (patch)
treeddcbc8e8b6d7c7d5ff972e1c6ce8bac57e938fcc /src/mesa/drivers/dri/i965/gen8_multisample_state.c
parentf3b4b263c2f08f641c42a02bf3c57c3da2fc0414 (diff)
downloadexternal_mesa3d-bea9b8e306e8424ffacbdfc99ca2fc91f1c9912b.zip
external_mesa3d-bea9b8e306e8424ffacbdfc99ca2fc91f1c9912b.tar.gz
external_mesa3d-bea9b8e306e8424ffacbdfc99ca2fc91f1c9912b.tar.bz2
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 <kenneth@whitecape.org> Reviewed-by: Kristian Høgsberg <krh@bitplanet.net> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/gen8_multisample_state.c')
-rw-r--r--src/mesa/drivers/dri/i965/gen8_multisample_state.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/gen8_multisample_state.c b/src/mesa/drivers/dri/i965/gen8_multisample_state.c
index daf3e69..ff75df6 100644
--- a/src/mesa/drivers/dri/i965/gen8_multisample_state.c
+++ b/src/mesa/drivers/dri/i965/gen8_multisample_state.c
@@ -83,8 +83,8 @@ upload_multisample_state(struct brw_context *brw)
const struct brw_tracked_state gen8_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