aboutsummaryrefslogtreecommitdiff
path: root/scripts/vk_validation_stats.py
diff options
context:
space:
mode:
authorMark Lobodzinski <mark@lunarg.com>2017-08-02 10:45:24 -0600
committerMark Lobodzinski <mark@lunarg.com>2017-08-02 13:58:49 -0600
commitae55897d6c2dcd49c097e1b49ed168a877e6470f (patch)
treea84ca87cff99b0ce39921b89ccfc986574def453 /scripts/vk_validation_stats.py
parenta1b8c48bfb5ccbb6760e0b34fac5d80768bb4dfe (diff)
downloadusermoji-ae55897d6c2dcd49c097e1b49ed168a877e6470f.tar.xz
layers: Fix incorrect VUID for negative viewport ht
Layers used the wrong VUID for the checks for negative viewport height if the extensions were not enabled. Fixed existing test, added a new test, and updated the database, and removed special case from validation_stats script. Change-Id: Ia165e6245990a4fabb3745102b345a7b4f1b0202
Diffstat (limited to 'scripts/vk_validation_stats.py')
-rwxr-xr-xscripts/vk_validation_stats.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/scripts/vk_validation_stats.py b/scripts/vk_validation_stats.py
index 93836cf1..33493dd3 100755
--- a/scripts/vk_validation_stats.py
+++ b/scripts/vk_validation_stats.py
@@ -195,10 +195,6 @@ class ValidationSource:
self.source_files.extend(qualified_paths)
self.enum_count_dict = {} # dict of enum values to the count of how much they're used, and location of where they're used
- # 1500099c is a special case that provides an exception when an extension is enabled. No specific error is flagged, but the exception is handled so add it here
- self.enum_count_dict['VALIDATION_ERROR_1500099c'] = {}
- self.enum_count_dict['VALIDATION_ERROR_1500099c']['count'] = 1
- self.enum_count_dict['VALIDATION_ERROR_1500099c']['file_line'] = []
def parse(self):
duplicate_checks = 0
for sf in self.source_files: