summaryrefslogtreecommitdiffstats
path: root/src/gallium/auxiliary/tgsi/tgsi_info.c
diff options
context:
space:
mode:
authorDave Airlie <airlied@redhat.com>2015-07-01 06:31:13 +0100
committerDave Airlie <airlied@redhat.com>2015-07-11 08:05:56 +0100
commitad2c3905d3460a6ddfc6756fc58a78332d82e72f (patch)
tree30eaf3f8cb6f65c52318c8d3db449b2893777817 /src/gallium/auxiliary/tgsi/tgsi_info.c
parente70d0515603df081916f6f31bb9e0455298b10cc (diff)
downloadexternal_mesa3d-ad2c3905d3460a6ddfc6756fc58a78332d82e72f.zip
external_mesa3d-ad2c3905d3460a6ddfc6756fc58a78332d82e72f.tar.gz
external_mesa3d-ad2c3905d3460a6ddfc6756fc58a78332d82e72f.tar.bz2
tgsi: add DFMA to the opcode infer functions.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Diffstat (limited to 'src/gallium/auxiliary/tgsi/tgsi_info.c')
-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 4b16ef3..8da42b9 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: