aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp
diff options
context:
space:
mode:
authorIlia Mirkin <[email protected]>2014-01-18 22:19:16 -0500
committerMaarten Lankhorst <[email protected]>2014-01-27 16:40:42 +0100
commit2689b59cabc26a20c5d72576a12d789edbfd4b4e (patch)
tree36bf20503c69785d3c5079d33532291b1de216c4 /src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp
parente05de038bf651220b529c386d88039636aacd410 (diff)
nv50/ir: txg not available on nvaa/nvac
Signed-off-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp')
-rw-r--r--src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp b/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp
index ade9be0300c..618cc694c18 100644
--- a/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp
+++ b/src/gallium/drivers/nouveau/codegen/nv50_ir_target_nv50.cpp
@@ -380,7 +380,7 @@ TargetNV50::isOpSupported(operation op, DataType ty) const
case OP_PRERET:
return chipset >= 0xa0;
case OP_TXG:
- return chipset >= 0xa3;
+ return chipset >= 0xa3 && chipset != 0xaa && chipset != 0xac;
case OP_POW:
case OP_SQRT:
case OP_DIV: