intel/genxml: Fix gen_sort_tags.py to handle mbz/mbo
authorKenneth Graunke <kenneth@whitecape.org>
Wed, 28 Jun 2023 19:22:54 +0000 (12:22 -0700)
committerMarge Bot <emma+marge@anholt.net>
Thu, 29 Jun 2023 21:45:13 +0000 (21:45 +0000)
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>

src/intel/genxml/gen_sort_tags.py

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