From 32305c0959dec86c24ef776209d4a92bb47e5776 Mon Sep 17 00:00:00 2001 From: Gert Wollny Date: Wed, 6 May 2020 23:15:28 +0200 Subject: [PATCH] r600/sfn: Fix printing vertex fetch instruction flags Fixes: f718ac62688b555a933c7112f656944288d04edb r600/sfn: Add a basic nir shader backend Signed-off-by: Gert Wollny Reviewed-by: Reviewed-by: Dave Airlie Part-of: --- src/gallium/drivers/r600/sfn/sfn_instruction_fetch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/r600/sfn/sfn_instruction_fetch.cpp b/src/gallium/drivers/r600/sfn/sfn_instruction_fetch.cpp index 62aec92..4ee7bb3 100644 --- a/src/gallium/drivers/r600/sfn/sfn_instruction_fetch.cpp +++ b/src/gallium/drivers/r600/sfn/sfn_instruction_fetch.cpp @@ -430,7 +430,7 @@ void FetchInstruction::do_print(std::ostream& os) const }; static const char buffer_index_mode_char[] = "_01E"; static const char *flag_string[] = {"WQM", "CF", "signed", "no_zero", - "nostride", "AC"}; + "nostride", "AC", "TC", "VPM"}; switch (m_vc_opcode) { case vc_fetch: os << "Fetch " << m_dst; -- 2.7.4