r600/sfn: remove debug output leftover

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5187>
This commit is contained in:
Gert Wollny 2020-05-23 19:07:08 +02:00 committed by Marge Bot
parent cead23cb8a
commit caa83e4d79

View file

@ -710,10 +710,8 @@ bool FragmentShaderFromNir::emit_export_pixel(const nir_variable *out_var, nir_i
swizzle = {7,7,0,7};
break;
default:
std::cerr << "Swizzle = ";
for (int i = 0; i < 4; ++i) {
swizzle[i] = (i < instr->num_components) ? i : 7;
std::cerr << swizzle[i] << ", ";
}
}