Mesa (master): nvfx: fix vp DP2

Luca Barbieri lb at kemper.freedesktop.org
Sat Sep 4 02:53:57 UTC 2010


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

Author: Luca Barbieri <luca at luca-barbieri.com>
Date:   Sat Sep  4 04:43:02 2010 +0200

nvfx: fix vp DP2

---

 src/gallium/drivers/nvfx/nvfx_vertprog.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/gallium/drivers/nvfx/nvfx_vertprog.c b/src/gallium/drivers/nvfx/nvfx_vertprog.c
index d761d5b..bc78ed4 100644
--- a/src/gallium/drivers/nvfx/nvfx_vertprog.c
+++ b/src/gallium/drivers/nvfx/nvfx_vertprog.c
@@ -534,7 +534,7 @@ nvfx_vertprog_parse_instruction(struct nvfx_context* nvfx, struct nvfx_vpc *vpc,
         case TGSI_OPCODE_DP2:
                 tmp = nvfx_src(temp(vpc));
                 nvfx_vp_emit(vpc, arith(VEC, MUL, tmp.reg, NVFX_VP_MASK_X | NVFX_VP_MASK_Y, src[0], src[1], none));
-                nvfx_vp_emit(vpc, arith(VEC, ADD, dst, mask, swz(tmp, X, X, X, X), swz(tmp, Y, Y, Y, Y), none));
+                nvfx_vp_emit(vpc, arith(VEC, ADD, dst, mask, swz(tmp, X, X, X, X), none, swz(tmp, Y, Y, Y, Y)));
                 break;
 	case TGSI_OPCODE_DP3:
 		nvfx_vp_emit(vpc, arith(VEC, DP3, dst, mask, src[0], src[1], none));




More information about the mesa-commit mailing list