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/brw_ff_gs.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/brw_ff_gs.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_ff_gs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_ff_gs.c b/src/mesa/drivers/dri/i965/brw_ff_gs.c index 6ca9e7f51e9..377e1faa24d 100644 --- a/src/mesa/drivers/dri/i965/brw_ff_gs.c +++ b/src/mesa/drivers/dri/i965/brw_ff_gs.c @@ -250,9 +250,9 @@ void gen6_brw_upload_ff_gs_prog(struct brw_context *brw) const struct brw_tracked_state brw_ff_gs_prog = { .dirty = { - .mesa = (_NEW_LIGHT), - .brw = (BRW_NEW_PRIMITIVE | - BRW_NEW_TRANSFORM_FEEDBACK), + .mesa = _NEW_LIGHT, + .brw = BRW_NEW_PRIMITIVE | + BRW_NEW_TRANSFORM_FEEDBACK, .cache = CACHE_NEW_VS_PROG }, .emit = brw_upload_ff_gs_prog |