From 6be097b1576ce5f8b7399e0c632596497e9e3b0a Mon Sep 17 00:00:00 2001 From: Yiwei Zhang Date: Mon, 19 Oct 2020 20:22:05 -0700 Subject: 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 --- vulkan/libvulkan/driver.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'vulkan/libvulkan/driver.cpp') 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 -- cgit v1.2.3-59-g8ed1b