r600/sfn: print tex prepare instructions
authorGert Wollny <gert.wollny@collabora.com>
Mon, 5 Sep 2022 15:38:53 +0000 (17:38 +0200)
committerMarge Bot <emma+marge@anholt.net>
Fri, 16 Sep 2022 15:43:09 +0000 (15:43 +0000)
Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18619>

src/gallium/drivers/r600/sfn/sfn_instr_tex.cpp

index 14b97f2..06d515c 100644 (file)
@@ -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);