intel/genxml: Fix gen_sort_tags.py to handle mbz/mbo

mbz and mbo are base types and not a structure to find as a dependency.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23684>
This commit is contained in:
Kenneth Graunke 2023-06-28 12:22:54 -07:00 committed by Marge Bot
parent 12f93d06e9
commit 4affaced9d

View file

@ -39,6 +39,8 @@ BASE_TYPES = {
'uint',
'bool',
'float',
'mbz',
'mbo',
}
FIXED_PATTERN = re.compile(r"(s|u)(\d+)\.(\d+)")