diff options
| author | Mike Schuchardt <mikes@lunarg.com> | 2020-07-06 17:15:17 -0700 |
|---|---|---|
| committer | Mike Schuchardt <mikes@lunarg.com> | 2020-11-20 09:44:43 -0800 |
| commit | 381a80ed358c5d75267801c338a09dec7493281d (patch) | |
| tree | 6bffeb53979ebae3c0eb5d661e7fceb63cf9acfd /scripts | |
| parent | 6ef69fbda85ba9a45602ac01cf96c59807561ee3 (diff) | |
| download | usermoji-381a80ed358c5d75267801c338a09dec7493281d.tar.xz | |
scripts: Remove assert for nested array types
Multi-dimensional are already in the specification and don't cause any
issues for vulkaninfo
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/vulkaninfo_generator.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/scripts/vulkaninfo_generator.py b/scripts/vulkaninfo_generator.py index 61e8651b..30b938c4 100644 --- a/scripts/vulkaninfo_generator.py +++ b/scripts/vulkaninfo_generator.py @@ -874,7 +874,6 @@ class VulkanVariable: if lengthString is not None: lengths = re.split(',', lengthString) lengths = list(filter(('null-terminated').__ne__, lengths)) - assert(len(lengths) <= 1) if self.arrayLength is None and len(lengths) > 0: self.childType = '*'.join(self.type.split('*')[0:-1]) self.arrayLength = lengths[0] |
