r600/sfn: print tex prepare instructions

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18619>
This commit is contained in:
Gert Wollny 2022-09-05 17:38:53 +02:00 committed by Marge Bot
parent c23604324b
commit 5241568641

View 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);