diff options
author | Zou Nan hai <[email protected]> | 2010-05-18 16:07:03 +0800 |
---|---|---|
committer | Zou Nan hai <[email protected]> | 2010-05-18 16:07:03 +0800 |
commit | 0f88ce1b0a98c7cacaa0dc53bbbb1f3c379aaa6a (patch) | |
tree | 6837d2ad70f25dd4ef597999f50022846765e691 /src/mesa | |
parent | 64f5e9059b975e34885e63bc404b30b1b2c28de8 (diff) |
gen6 fix: fix a wrong bit in binding_table_pointer
Diffstat (limited to 'src/mesa')
-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 f26a13fc3c3..2d3556b8054 100644 --- a/src/mesa/drivers/dri/i965/brw_defines.h +++ b/src/mesa/drivers/dri/i965/brw_defines.h @@ -783,7 +783,7 @@ #define CMD_BINDING_TABLE_PTRS 0x7801 # define GEN6_BINDING_TABLE_MODIFY_VS (1 << 8) # define GEN6_BINDING_TABLE_MODIFY_GS (1 << 9) -# define GEN6_BINDING_TABLE_MODIFY_PS (1 << 10) +# define GEN6_BINDING_TABLE_MODIFY_PS (1 << 12) #define CMD_3D_SAMPLER_STATE_POINTERS 0x7802 /* SNB+ */ # define PS_SAMPLER_STATE_CHANGE (1 << 12) |