diff options
| author | Nathaniel Cesario <nathaniel@lunarg.com> | 2020-11-02 11:33:45 -0700 |
|---|---|---|
| committer | ncesario-lunarg <71668273+ncesario-lunarg@users.noreply.github.com> | 2020-11-02 14:34:57 -0700 |
| commit | 51c1c5ab56d599438ce97650e22c664fb07a4fca (patch) | |
| tree | 7379526625c295f87edc1c68584a7e59114efa4b /scripts | |
| parent | 3f747ee91e3bd5abc6c55a47706ad822238f850a (diff) | |
| download | usermoji-51c1c5ab56d599438ce97650e22c664fb07a4fca.tar.xz | |
mockicd: Remove VK_KHR_portability_subset
Don't report VK_KHR_portability_subset as being supported.
Change-Id: I84fa925cee23d3a28ca2726972cb9820c03c619c
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/mock_icd_generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mock_icd_generator.py b/scripts/mock_icd_generator.py index 30f396c3..79680a80 100644 --- a/scripts/mock_icd_generator.py +++ b/scripts/mock_icd_generator.py @@ -1185,7 +1185,7 @@ class MockICDOutputGenerator(OutputGenerator): device_exts = [] instance_exts = [] # Ignore extensions that ICDs should not implement or are not safe to report - ignore_exts = ['VK_EXT_validation_cache'] + ignore_exts = ['VK_EXT_validation_cache', 'VK_KHR_portability_subset'] for ext in self.registry.tree.findall("extensions/extension"): if ext.attrib['supported'] != 'disabled': # Only include enabled extensions if (ext.attrib['name'] in ignore_exts): |
