mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 08:58:02 +02:00
r600/sfn: Fix printing vertex fetch instruction flags
Fixes:f718ac6268r600/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> (cherry picked from commit32305c0959)
This commit is contained in:
parent
b5a7d4b68b
commit
1edaba5f4a
2 changed files with 2 additions and 2 deletions
|
|
@ -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"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue