tgsi/exec: fix LDEXP in softpipe

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103128
Fixes: cad959d901 ("gallium: add LDEXP TGSI instruction and corresponding cap")
Reviewed-by: Brian Paul <brianp@vmware.com>
(cherry picked from commit f3fa3b0d95)
This commit is contained in:
Nicolai Hähnle 2017-11-15 19:34:00 +01:00 committed by Emil Velikov
parent e4f186d3ae
commit f539ea0e8b

View file

@ -5130,7 +5130,7 @@ exec_instruction(
break;
case TGSI_OPCODE_LDEXP:
exec_scalar_binary(mach, inst, micro_ldexp, TGSI_EXEC_DATA_FLOAT, TGSI_EXEC_DATA_INT);
exec_vector_binary(mach, inst, micro_ldexp, TGSI_EXEC_DATA_FLOAT, TGSI_EXEC_DATA_FLOAT);
break;
case TGSI_OPCODE_COS: