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 | |
| 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
| -rw-r--r-- | icd/generated/mock_icd.h | 1 | ||||
| -rw-r--r-- | scripts/mock_icd_generator.py | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/icd/generated/mock_icd.h b/icd/generated/mock_icd.h index 13fcba49..0d267aa4 100644 --- a/icd/generated/mock_icd.h +++ b/icd/generated/mock_icd.h @@ -180,7 +180,6 @@ static const std::unordered_map<std::string, uint32_t> device_extension_map = { {"VK_EXT_image_drm_format_modifier", 1}, {"VK_EXT_descriptor_indexing", 2}, {"VK_EXT_shader_viewport_index_layer", 1}, - {"VK_KHR_portability_subset", 1}, {"VK_NV_shading_rate_image", 3}, {"VK_NV_ray_tracing", 3}, {"VK_NV_representative_fragment_test", 2}, 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): |
