diff options
author | Keith Whitwell <[email protected]> | 2009-09-01 17:29:24 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-09-01 17:30:01 +0100 |
commit | b3f4b56a3b7f979c631358caefed635c6ec56453 (patch) | |
tree | 714f8b2bf31dea318986cf8a1cfd5deaefe171db /src/gallium/auxiliary/tgsi/tgsi-instruction-set.txt | |
parent | 836a9f0ae6e03d2f92dc024703015c25a5b3c353 (diff) |
tgsi: remove redundant CND0 opcode
Can be implemented with CMP src2, src1, src0
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi-instruction-set.txt')
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi-instruction-set.txt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi-instruction-set.txt b/src/gallium/auxiliary/tgsi/tgsi-instruction-set.txt index 802ec371189..a989514b75f 100644 --- a/src/gallium/auxiliary/tgsi/tgsi-instruction-set.txt +++ b/src/gallium/auxiliary/tgsi/tgsi-instruction-set.txt @@ -187,11 +187,7 @@ TGSI Instruction Specification 1.2.6 CND0 - Condition Zero - dst.x = (src2.x >= 0.0) ? src0.x : src1.x - dst.y = (src2.y >= 0.0) ? src0.y : src1.y - dst.z = (src2.z >= 0.0) ? src0.z : src1.z - dst.w = (src2.w >= 0.0) ? src0.w : src1.w - + Removed. Use (CMP src2, src1, src0) instead. 1.2.7 DOT2ADD - 2-component Dot Product And Add |