Update for Vulkan-Docs 1.2.175

This commit is contained in:
Jon Leech 2021-04-13 02:38:07 -07:00 committed by Jon Leech
parent e1d8c4931d
commit e01b006576
8 changed files with 69031 additions and 36569 deletions

View file

@ -606,7 +606,7 @@ class OutputGenerator:
# Break the group name into prefix and suffix portions for range
# enum generation
expandName = re.sub(r'([0-9a-z_])([A-Z0-9])', r'\1_\2', groupName).upper()
expandName = re.sub(r'([0-9]+|[a-z_])([A-Z0-9])', r'\1_\2', groupName).upper()
expandPrefix = expandName
expandSuffix = ''
expandSuffixMatch = re.search(r'[A-Z][A-Z]+$', groupName)