diff --git a/.pick_status.json b/.pick_status.json index fcc954dd062..516920f0fe5 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1390,7 +1390,7 @@ "description": "r600/sfn: Fix printing vertex fetch instruction flags", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "f718ac62688b555a933c7112f656944288d04edb" }, diff --git a/src/gallium/drivers/r600/sfn/sfn_instruction_fetch.cpp b/src/gallium/drivers/r600/sfn/sfn_instruction_fetch.cpp index 62aec922a7b..4ee7bb3c701 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;