aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/vulkaninfo_generator.py1
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]