summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Airlie <[email protected]>2015-07-01 06:31:13 +0100
committerDave Airlie <[email protected]>2015-07-11 08:05:56 +0100
commitad2c3905d3460a6ddfc6756fc58a78332d82e72f (patch)
tree30eaf3f8cb6f65c52318c8d3db449b2893777817 /src
parente70d0515603df081916f6f31bb9e0455298b10cc (diff)
tgsi: add DFMA to the opcode infer functions.
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r--src/gallium/auxiliary/tgsi/tgsi_info.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_info.c b/src/gallium/auxiliary/tgsi/tgsi_info.c
index 4b16ef387f3..8da42b98468 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_info.c
+++ b/src/gallium/auxiliary/tgsi/tgsi_info.c
@@ -381,6 +381,7 @@ tgsi_opcode_infer_type( uint opcode )
return TGSI_TYPE_SIGNED;
case TGSI_OPCODE_DADD:
case TGSI_OPCODE_DABS:
+ case TGSI_OPCODE_DFMA:
case TGSI_OPCODE_DNEG:
case TGSI_OPCODE_DMUL:
case TGSI_OPCODE_DMAX: