diff options
author | Nicolai Hähnle <[email protected]> | 2017-11-15 19:34:00 +0100 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2017-11-16 06:47:05 +0100 |
commit | f3fa3b0d95c712c00318ca5601433bce1b82432d (patch) | |
tree | c4a9f36f115665f2083780c4d31ec445b4cc7d1b | |
parent | 2e3d0dd6c8f405f27d68b1ac35e928233bf8b89c (diff) |
tgsi/exec: fix LDEXP in softpipe
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=103128
Fixes: cad959d90145 ("gallium: add LDEXP TGSI instruction and corresponding cap")
Reviewed-by: Brian Paul <[email protected]>
-rw-r--r-- | src/gallium/auxiliary/tgsi/tgsi_exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/tgsi/tgsi_exec.c b/src/gallium/auxiliary/tgsi/tgsi_exec.c index afed96c9b1d..793c0da39ab 100644 --- a/src/gallium/auxiliary/tgsi/tgsi_exec.c +++ b/src/gallium/auxiliary/tgsi/tgsi_exec.c @@ -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: |