diff options
author | Kenneth Graunke <[email protected]> | 2012-11-20 13:50:52 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2012-11-26 19:52:33 -0800 |
commit | a303df86de96a428f82377a8c38db8b7e3223447 (patch) | |
tree | 4264e019252a9dc99dae0ae7e70d07915aae1ced /src/mesa/drivers/dri/i965/brw_wm.h | |
parent | 47a6a7b51b774091f46aed264b3591fd36c8baed (diff) |
i965/fs: Move brw_wm_compile::dispatch_width into fs_visitor.
Also, rather than having brw_wm_fs_emit poke at it directly, make it a
parameter to the fs_visitor constructor.
All other changes generated by search and replace (with occasional
whitespace fixup).
v2: Make dispatch_width const (as suggested by Paul); fix doxygen
mistake (pointed out by Eric); update for rebase.
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Paul Berry <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_wm.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm.h b/src/mesa/drivers/dri/i965/brw_wm.h index b8d8df3e012..a5ebdddc732 100644 --- a/src/mesa/drivers/dri/i965/brw_wm.h +++ b/src/mesa/drivers/dri/i965/brw_wm.h @@ -93,8 +93,6 @@ struct brw_wm_compile { GLuint runtime_check_aads_emit:1; GLuint last_scratch; - - GLuint dispatch_width; }; bool brw_wm_fs_emit(struct brw_context *brw, struct brw_wm_compile *c, |