From 524156864122ac44155fbf8649700cac2f11cc17 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Mon, 5 Sep 2022 17:38:53 +0200 Subject: [PATCH] r600/sfn: print tex prepare instructions Signed-off-by: Gert Wollny Part-of: --- src/gallium/drivers/r600/sfn/sfn_instr_tex.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gallium/drivers/r600/sfn/sfn_instr_tex.cpp b/src/gallium/drivers/r600/sfn/sfn_instr_tex.cpp index 14b97f2b7f2..06d515c0160 100644 --- a/src/gallium/drivers/r600/sfn/sfn_instr_tex.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_instr_tex.cpp @@ -138,6 +138,10 @@ bool TexInstr::do_ready() const void TexInstr::do_print(std::ostream& os) const { + for (auto& p : prepare_instr()) { + os << *p << "\n"; + } + os << "TEX " << opname(m_opcode) << " "; print_dest(os);