diff options
| author | 2019-07-11 03:52:59 +0000 | |
|---|---|---|
| committer | 2019-07-11 03:52:59 +0000 | |
| commit | add824adfe02d6c2e710d5f94ea5597f165ee1fa (patch) | |
| tree | 21c9bc612ff2344b2d2d4bb2b00dbbef1bdc22b2 /vulkan/libvulkan/driver.cpp | |
| parent | f079d7874ad6f3faf6c5940f71dc186d1de3519d (diff) | |
| parent | 4d90373273263e55e48a2ddab2e89a047ae49412 (diff) | |
Merge "DO NOT MERGE - Merge pie-platform-release (PPRL.190705.004) into master"
Diffstat (limited to 'vulkan/libvulkan/driver.cpp')
| -rw-r--r-- | vulkan/libvulkan/driver.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vulkan/libvulkan/driver.cpp b/vulkan/libvulkan/driver.cpp index fdbd969d66..b494bcafec 100644 --- a/vulkan/libvulkan/driver.cpp +++ b/vulkan/libvulkan/driver.cpp @@ -945,7 +945,9 @@ VkResult EnumerateDeviceExtensionProperties( memcpy(prop.extensionName, VK_KHR_SWAPCHAIN_EXTENSION_NAME, sizeof(VK_KHR_SWAPCHAIN_EXTENSION_NAME)); - prop.specVersion = VK_KHR_SWAPCHAIN_SPEC_VERSION; + // b/130182551 VK_KHR_SWAPCHAIN_SPEC_VERSION > 68 has structs the + // loader doesn't handle properly. So drop the spec version to 68. + prop.specVersion = 68; } } |