diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-10-14 11:54:35 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-10-14 11:54:35 +0100 |
commit | 9f009c13beeb6b156e638975827d06b3cdedb0c6 (patch) | |
tree | 63349da5b0144a68e8d0dc773e7d71372543cad1 /src/sna/brw | |
parent | 8909f7423567a6902320c1a2e83abd501223fb84 (diff) |
sna/gen6: Fix the invert fix
Eek, missed that 8-wide dispatch branch still had the opposite fix that I was
testing first.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/sna/brw')
-rw-r--r-- | src/sna/brw/brw_wm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sna/brw/brw_wm.c b/src/sna/brw/brw_wm.c index 03a45d9d..1d1dda64 100644 --- a/src/sna/brw/brw_wm.c +++ b/src/sna/brw/brw_wm.c @@ -531,7 +531,7 @@ static void brw_wm_projective_st(struct brw_compile *p, int dw, brw_math_invert(p, brw_vec8_grf(31, 0), brw_vec8_grf(31, 0)); brw_set_compression_control(p, BRW_COMPRESSION_COMPRESSED); } else - brw_math_invert(p, brw_vec8_grf(30, 0), brw_message_reg(msg)); + brw_math_invert(p, brw_vec8_grf(30, 0), brw_vec8_grf(30, 0)); brw_PLN(p, brw_vec8_grf(26, 0), |