aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristoph Bumiller <[email protected]>2012-05-28 22:38:10 +0200
committerChristoph Bumiller <[email protected]>2012-05-29 15:01:41 +0200
commit0d818cdacce0299fabe4ac2aa735247c651fdcfa (patch)
tree0bab6822c75c37d806a35d08ce65898807dbca2d /src
parentf80c2874eca86a12517fbe2f4c15287edfb4dc89 (diff)
nvc0/ir: TEX doesn't support JOIN modifier either
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/nv50/codegen/nv50_ir_peephole.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/nv50/codegen/nv50_ir_peephole.cpp b/src/gallium/drivers/nv50/codegen/nv50_ir_peephole.cpp
index 10382d9cac6..cfbe3ecf784 100644
--- a/src/gallium/drivers/nv50/codegen/nv50_ir_peephole.cpp
+++ b/src/gallium/drivers/nv50/codegen/nv50_ir_peephole.cpp
@@ -1936,6 +1936,7 @@ FlatteningPass::visit(BasicBlock *bb)
if (insn && !insn->getPredicate() &&
!insn->asFlow() &&
insn->op != OP_TEXBAR &&
+ !isTextureOp(insn->op) && // probably just nve4
insn->op != OP_LINTERP && // probably just nve4
insn->op != OP_PINTERP && // probably just nve4
!insn->isNop()) {