From ad2c3905d3460a6ddfc6756fc58a78332d82e72f Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Wed, 1 Jul 2015 06:31:13 +0100 Subject: [PATCH] tgsi: add DFMA to the opcode infer functions. Signed-off-by: Dave Airlie --- src/gallium/auxiliary/tgsi/tgsi_info.c | 1 + 1 file changed, 1 insertion(+) 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: -- 2.30.2