diff options
author | Gert Wollny <[email protected]> | 2020-05-06 23:55:56 +0200 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-05-19 07:52:13 +0000 |
commit | ac2c3fb010c00716444e3d7b4381b29afbc92cd4 (patch) | |
tree | 210dca6e5ab8cd12715973c8c3b4afbcd19801f2 /src/gallium/drivers/r600 | |
parent | 9db5536643acff1dac81bbd3cae97a66228b0947 (diff) |
r600/sfn: Fix handling of output register index
Signed-off-by: Gert Wollny <[email protected]>
Reviewed-by: Reviewed-by: Dave Airlie <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5085>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/sfn/sfn_shader_base.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/r600/sfn/sfn_shader_base.cpp b/src/gallium/drivers/r600/sfn/sfn_shader_base.cpp index 57053efc49a..2e65d8dafb2 100644 --- a/src/gallium/drivers/r600/sfn/sfn_shader_base.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_shader_base.cpp @@ -988,10 +988,10 @@ void ShaderFromNirProcessor::set_input(unsigned pos, PValue var) m_inputs[pos] = var; } -void ShaderFromNirProcessor::set_output(unsigned pos, PValue var) +void ShaderFromNirProcessor::set_output(unsigned pos, int sel) { - r600::sfn_log << SfnLog::io << "Set output[" << pos << "] =" << *var << "\n"; - m_outputs[pos] = var; + r600::sfn_log << SfnLog::io << "Set output[" << pos << "] =" << sel << "\n"; + m_outputs[pos] = sel; } void ShaderFromNirProcessor::append_block(int nesting_change) @@ -1008,7 +1008,7 @@ void ShaderFromNirProcessor::finalize() m_sh_info.input[i.first].gpr = i.second->sel(); for (auto& i : m_outputs) - m_sh_info.output[i.first].gpr = i.second->sel(); + m_sh_info.output[i.first].gpr = i.second; m_output.push_back(m_export_output); } |