Mesa (master): i965: minor tweak: replace OPCODE_MOV with OPCODE_SWZ

Brian Paul brianp at kemper.freedesktop.org
Wed Jan 28 22:07:15 UTC 2009


Module: Mesa
Branch: master
Commit: 3dcc48e6882385f58ec9b19a3a7d5307ef9fc976
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=3dcc48e6882385f58ec9b19a3a7d5307ef9fc976

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Jan 28 14:51:35 2009 -0700

i965: minor tweak: replace OPCODE_MOV with OPCODE_SWZ

Just to reinforce the understanding that an extended swizzle with 0 and 1
terms is possible there.

---

 src/mesa/drivers/dri/i965/brw_wm_fp.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/i965/brw_wm_fp.c b/src/mesa/drivers/dri/i965/brw_wm_fp.c
index 6b3f51d..ea3f3fc 100644
--- a/src/mesa/drivers/dri/i965/brw_wm_fp.c
+++ b/src/mesa/drivers/dri/i965/brw_wm_fp.c
@@ -761,7 +761,7 @@ static void precalc_tex( struct brw_wm_compile *c,
    if (c->key.tex_swizzles[unit] != SWIZZLE_NOOP) {
       /* swizzle the result of the TEX instruction */
       struct prog_src_register tmpsrc = src_reg_from_dst(inst->DstReg);
-      emit_op(c, OPCODE_MOV,
+      emit_op(c, OPCODE_SWZ,
               inst->DstReg,
               SATURATE_OFF, /* saturate already done above */
               0, 0,   /* tex unit, target N/A */




More information about the mesa-commit mailing list