diff options
| author | Mark Lobodzinski <mark@lunarg.com> | 2017-06-28 14:58:27 -0600 |
|---|---|---|
| committer | Mark Lobodzinski <mark@lunarg.com> | 2017-07-03 10:15:47 -0600 |
| commit | 672a030999ee5cc89a5a1dce252629dfdcf4a082 (patch) | |
| tree | 81eb61ee1ef4f29490210485daafc544e0b54f8c /scripts/reg.py | |
| parent | b279fcce9ff2b71193702dae66d464d8068d96ab (diff) | |
| download | usermoji-672a030999ee5cc89a5a1dce252629dfdcf4a082.tar.xz | |
header: Update to version 1.0.53 of the vulkan hdr
- updated vulkan.h
- updated reg.py
- updated vk.xml
- updated vk_validation_error_database.txt
- updated vk_validation_error_messages.h
- updated vuid_mapping.py
- updated vulkan.hpp
- fixed error database vuid parser issue
- updated error DB with new VUIDS
Change-Id: I4744f4278981cf808b1b3c9fcf9cf6f5793f1338
Diffstat (limited to 'scripts/reg.py')
| -rwxr-xr-x | scripts/reg.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/reg.py b/scripts/reg.py index 1554c305..5c92d271 100755 --- a/scripts/reg.py +++ b/scripts/reg.py @@ -200,6 +200,7 @@ class Registry: self.cmddict = {} self.apidict = {} self.extensions = [] + self.requiredextensions = [] # Hack - can remove it after validity generator goes away self.extdict = {} # A default output generator, so commands prior to apiGen can report # errors via the generator object. @@ -719,6 +720,9 @@ class Registry: if (include): ei.emit = True features.append(ei) + + # Hack - can be removed when validity generator goes away + self.requiredextensions.append(extName) else: self.gen.logMsg('diag', '*** NOT including extension', extName, '(does not match api attribute or explicitly requested extensions)') |
