nvfx: implement NOP
authorLuca Barbieri <luca@luca-barbieri.com>
Sat, 21 Aug 2010 17:45:06 +0000 (19:45 +0200)
committerLuca Barbieri <luca@luca-barbieri.com>
Sat, 21 Aug 2010 18:42:15 +0000 (20:42 +0200)
src/gallium/drivers/nvfx/nvfx_fragprog.c
src/gallium/drivers/nvfx/nvfx_vertprog.c

index 91776371e464c3f44e38ffce3d26a3dbf2ba6c14..2b749efecee337e09df92b9af50336512b610d24 100644 (file)
@@ -636,6 +636,8 @@ nvfx_fragprog_parse_instruction(struct nvfx_context* nvfx, struct nvfx_fpc *fpc,
        case TGSI_OPCODE_MUL:
                nvfx_fp_emit(fpc, arith(sat, MUL, dst, mask, src[0], src[1], none));
                break;
+       case TGSI_OPCODE_NOP:
+               break;
        case TGSI_OPCODE_POW:
                if(!nvfx->is_nv4x)
                        nvfx_fp_emit(fpc, arith(sat, POW_NV30, dst, mask, src[0], src[1], none));
index 98fcc928982ec6ebd13d83ba185fc83b17c109ab..2894532bd197c35c4d701165a45f7aa8ccd60890 100644 (file)
@@ -567,6 +567,8 @@ nvfx_vertprog_parse_instruction(struct nvfx_context* nvfx, struct nvfx_vpc *vpc,
        case TGSI_OPCODE_MUL:
                nvfx_vp_emit(vpc, arith(VEC, MUL, dst, mask, src[0], src[1], none));
                break;
+       case TGSI_OPCODE_NOP:
+               break;
        case TGSI_OPCODE_POW:
                tmp = nvfx_src(temp(vpc));
                nvfx_vp_emit(vpc, arith(SCA, LG2, tmp.reg, NVFX_VP_MASK_X, none, none, swz(src[0], X, X, X, X)));