xf86-video-intel: src/sna/brw

Chris Wilson ickle at kemper.freedesktop.org
Mon Oct 14 03:55:36 PDT 2013


 src/sna/brw/brw_wm.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 9f009c13beeb6b156e638975827d06b3cdedb0c6
Author: Chris Wilson <chris at chris-wilson.co.uk>
Date:   Mon Oct 14 11:54:35 2013 +0100

    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 at chris-wilson.co.uk>

diff --git a/src/sna/brw/brw_wm.c b/src/sna/brw/brw_wm.c
index 03a45d9..1d1dda6 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),


More information about the xorg-commit mailing list