r600/sfn: Be a bit more verbose when logging skipped FS outputs

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6814>
This commit is contained in:
Gert Wollny
2020-09-22 09:22:20 +02:00
committed by Marge Bot
parent 2abb9e5ac0
commit 5d3a72cd61

View File

@@ -300,9 +300,11 @@ bool FragmentShaderFromNir::do_emit_store_deref(const nir_variable *out_var, nir
bool FragmentShaderFromNir::do_process_outputs(nir_variable *output)
{
sfn_log << SfnLog::instr << "Parse output variable "
sfn_log << SfnLog::io << "Parse output variable "
<< output->name << " @" << output->data.location
<< "@dl:" << output->data.driver_location << "\n";
<< "@dl:" << output->data.driver_location
<< " dual source idx: " << output->data.index
<< "\n";
++sh_info().noutput;
r600_shader_io& io = sh_info().output[output->data.driver_location];