r600/sfn: Fix printing vertex fetch instruction flags
authorGert Wollny <gert.wollny@collabora.com>
Wed, 6 May 2020 21:15:28 +0000 (23:15 +0200)
committerMarge Bot <eric+marge@anholt.net>
Tue, 19 May 2020 07:52:13 +0000 (07:52 +0000)
Fixes: f718ac62688b555a933c7112f656944288d04edb
    r600/sfn: Add a basic nir shader backend

Signed-off-by: Gert Wollny <gert.wollny@collabora.com>
Reviewed-by: Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5085>

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

index 62aec922a7b692a8f4b89aecd0c678faa4167671..4ee7bb3c70168534878b866ddad6a25cf52dfad4 100644 (file)
@@ -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;