diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-11-08 11:44:12 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-11-08 11:44:12 -0700 |
commit | ae9fe0f981377cb25bc3fe6f23a6ee7e3b73d0c2 (patch) | |
tree | 6f65724a6f3bb6a729c289bd43a2e97aabe51663 /src/mesa/pipe/i915simple/i915_fpc_translate.c | |
parent | fa63d6d32c93a5d8cd88c0c7d4a8ac4c1c1c1a9d (diff) |
Remove TGSI_OPCODE_TXP
Use TGSI_OPCODE_TEX with ExtDivide=TGSI_EXTSWIZZLE_W instead.
Diffstat (limited to 'src/mesa/pipe/i915simple/i915_fpc_translate.c')
-rw-r--r-- | src/mesa/pipe/i915simple/i915_fpc_translate.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/pipe/i915simple/i915_fpc_translate.c b/src/mesa/pipe/i915simple/i915_fpc_translate.c index b867b87e74..d74da85216 100644 --- a/src/mesa/pipe/i915simple/i915_fpc_translate.c +++ b/src/mesa/pipe/i915simple/i915_fpc_translate.c @@ -844,10 +844,6 @@ i915_translate_instruction(struct i915_fp_compile *p, emit_tex(p, inst, T0_TEXLDB); break; - case TGSI_OPCODE_TXP: - emit_tex(p, inst, T0_TEXLDP); - break; - case TGSI_OPCODE_XPD: /* Cross product: * result.x = src0.y * src1.z - src0.z * src1.y; |