tgsi/exec: fix LDEXP in softpipe
authorNicolai Hähnle <nicolai.haehnle@amd.com>
Wed, 15 Nov 2017 18:34:00 +0000 (19:34 +0100)
committerNicolai Hähnle <nicolai.haehnle@amd.com>
Thu, 16 Nov 2017 05:47:05 +0000 (06:47 +0100)
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103128
Fixes: cad959d90145 ("gallium: add LDEXP TGSI instruction and corresponding cap")
Reviewed-by: Brian Paul <brianp@vmware.com>
src/gallium/auxiliary/tgsi/tgsi_exec.c

index afed96c9b1db6f90606594d783c48d45bcb495c3..793c0da39abbaf253be23acf13768f4b51442260 100644 (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: