diff options
author | 2020-10-19 20:22:05 -0700 | |
---|---|---|
committer | 2020-10-22 16:46:23 -0700 | |
commit | 6be097b1576ce5f8b7399e0c632596497e9e3b0a (patch) | |
tree | 535d9084436b054567841a7a7a33af1c772d2488 /vulkan/libvulkan/driver.cpp | |
parent | 17bf1c00aa5ad96fb60670dc53d7331af1cd0c4a (diff) |
Vulkan: update the loader for vulkan-headers v1.2.158
1. Fixed a false assumption on max api version in gen script
2. Updated thae gens via ./vulkan/scripts/code_generator.py
3. Added the new entry points to null_driver.
4. Updated the llndk symbol map
Bug: 171402955
Test: build
Change-Id: Ifa0b9dce7f4138ca0c72c1c17ca3af8eed538abf
Diffstat (limited to 'vulkan/libvulkan/driver.cpp')
-rw-r--r-- | vulkan/libvulkan/driver.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vulkan/libvulkan/driver.cpp b/vulkan/libvulkan/driver.cpp index 01cbf399ff..c63fdf5969 100644 --- a/vulkan/libvulkan/driver.cpp +++ b/vulkan/libvulkan/driver.cpp @@ -549,6 +549,7 @@ void CreateInfoWrapper::FilterExtension(const char* name) { case ProcHook::GOOGLE_display_timing: case ProcHook::EXTENSION_CORE_1_0: case ProcHook::EXTENSION_CORE_1_1: + case ProcHook::EXTENSION_CORE_1_2: case ProcHook::EXTENSION_COUNT: // Device and meta extensions. If we ever get here it's a bug in // our code. But enumerating them lets us avoid having a default @@ -598,6 +599,7 @@ void CreateInfoWrapper::FilterExtension(const char* name) { case ProcHook::ANDROID_native_buffer: case ProcHook::EXTENSION_CORE_1_0: case ProcHook::EXTENSION_CORE_1_1: + case ProcHook::EXTENSION_CORE_1_2: case ProcHook::EXTENSION_COUNT: // Instance and meta extensions. If we ever get here it's a bug // in our code. But enumerating them lets us avoid having a |