diff options
author | Chad Versace <[email protected]> | 2011-12-21 17:49:07 -0800 |
---|---|---|
committer | Chad Versace <[email protected]> | 2012-01-10 15:52:05 -0800 |
commit | b755f5894ce211dcb8ec881ba9cd9856383c3c79 (patch) | |
tree | 114fc0dd2cd62a3a60cf33898a7f7f4670763c74 /src/mesa/drivers/dri/i965 | |
parent | bd38459fe922b9f672673bf8edd835937ed311ec (diff) |
i965: Fix misnamed GEN7_WM_DEPTH_RESOLVE
It was named GEN6_WM_DEPTH_RESOLVE. Luckily, this caused no conflict,
because the value is identical for gen6 and gen7.
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Signed-off-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_defines.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_defines.h b/src/mesa/drivers/dri/i965/brw_defines.h index f7bb05ad317..4d90a99442a 100644 --- a/src/mesa/drivers/dri/i965/brw_defines.h +++ b/src/mesa/drivers/dri/i965/brw_defines.h @@ -1345,7 +1345,7 @@ enum brw_wm_barycentric_interp_mode { # define GEN7_WM_STATISTICS_ENABLE (1 << 31) # define GEN7_WM_DEPTH_CLEAR (1 << 30) # define GEN7_WM_DISPATCH_ENABLE (1 << 29) -# define GEN6_WM_DEPTH_RESOLVE (1 << 28) +# define GEN7_WM_DEPTH_RESOLVE (1 << 28) # define GEN7_WM_HIERARCHICAL_DEPTH_RESOLVE (1 << 27) # define GEN7_WM_KILL_ENABLE (1 << 25) # define GEN7_WM_PSCDEPTH_OFF (0 << 23) |