i965: Make the cube mapping RCP use a writemask.
authorEric Anholt <eric@anholt.net>
Wed, 12 Aug 2009 20:49:06 +0000 (13:49 -0700)
committerEric Anholt <eric@anholt.net>
Wed, 12 Aug 2009 20:50:09 +0000 (13:50 -0700)
Fixes cube mapping since the scalar changes.

src/mesa/drivers/dri/i965/brw_wm_fp.c

index 8e37a01..0eac1bf 100644 (file)
@@ -716,7 +716,7 @@ static void precalc_tex( struct brw_wm_compile *c,
 
        /* tmp0 = 1 / tmp1 */
        emit_op(c, OPCODE_RCP,
-               tmp0,
+               dst_mask(tmp0, WRITEMASK_X),
                0,
                tmp1src,
                src_undef(),
@@ -727,7 +727,7 @@ static void precalc_tex( struct brw_wm_compile *c,
                tmpcoord,
                0,
                src0,
-               tmp0src,
+               src_swizzle1(tmp0src, SWIZZLE_X),
                src_undef());
 
        release_temp(c, tmp0);