From 0763567da88670440d86f2eb416bbbf25e66af26 Mon Sep 17 00:00:00 2001 From: Zephyron Date: Tue, 22 Apr 2025 17:12:54 +1000 Subject: [PATCH] android: Update Vulkan Validation Layer to 1.4.309.0 Updates the Android Vulkan Validation Layer (VVL) from version 1.4.304.1 to 1.4.309.0. This ensures compatibility with the latest Vulkan specification and provides improved validation capabilities for the Android build. Signed-off-by: Zephyron --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 10739f3112..a902b7a379 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -106,7 +106,7 @@ endif() option(ENABLE_OPENSSL "Enable OpenSSL backend for ISslConnection" ${DEFAULT_ENABLE_OPENSSL}) if (ANDROID AND YUZU_DOWNLOAD_ANDROID_VVL) - set(vvl_version "vulkan-sdk-1.4.304.1") + set(vvl_version "1.4.309.0") set(vvl_zip_file "${CMAKE_BINARY_DIR}/externals/vvl-android.zip") set(vvl_lib_path "${CMAKE_CURRENT_SOURCE_DIR}/src/android/app/src/main/jniLibs/arm64-v8a/") set(vvl_final_lib "${vvl_lib_path}/libVkLayer_khronos_validation.so")