From: Mike Schuchardt Date: Mon, 13 Mar 2023 17:43:05 +0000 (-0700) Subject: build: Update to header 1.3.243 X-Git-Tag: upstream/1.3.268~211 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dc32470ff1ac3557e90b172cc8376306167f2f0e;p=platform%2Fupstream%2FVulkan-Loader.git build: Update to header 1.3.243 - Update known-good - Generate source - Add new return code to test_util.h --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 2db64a95..516ebbf7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -16,7 +16,7 @@ # ~~~ cmake_minimum_required(VERSION 3.17.2) -project(VULKAN_LOADER VERSION 1.3.242) +project(VULKAN_LOADER VERSION 1.3.243) add_subdirectory(scripts) diff --git a/loader/loader.rc b/loader/loader.rc index ce3168b9..0a106047 100644 --- a/loader/loader.rc +++ b/loader/loader.rc @@ -22,8 +22,8 @@ #include "winres.h" // All set through CMake -#define VER_FILE_VERSION 1, 3, 242 -#define VER_FILE_DESCRIPTION_STR "1.3.242.Dev Build" +#define VER_FILE_VERSION 1, 3, 243 +#define VER_FILE_DESCRIPTION_STR "1.3.243.Dev Build" #define VER_FILE_VERSION_STR "Vulkan Loader - Dev Build" #define VER_COPYRIGHT_STR "Copyright (C) 2015-2023" diff --git a/scripts/known_good.json b/scripts/known_good.json index 61d44be6..e852dec2 100644 --- a/scripts/known_good.json +++ b/scripts/known_good.json @@ -6,7 +6,7 @@ "sub_dir": "Vulkan-Headers", "build_dir": "Vulkan-Headers/build", "install_dir": "Vulkan-Headers/build/install", - "commit": "v1.3.242" + "commit": "v1.3.243" }, { "name": "googletest", diff --git a/tests/framework/test_util.h b/tests/framework/test_util.h index 9966311f..4a90952d 100644 --- a/tests/framework/test_util.h +++ b/tests/framework/test_util.h @@ -512,6 +512,8 @@ inline std::ostream& operator<<(std::ostream& os, const VkResult& result) { return os << "VK_ERROR_VIDEO_PROFILE_CODEC_NOT_SUPPORTED_KHR"; case (VK_ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR): return os << "VK_ERROR_VIDEO_STD_VERSION_NOT_SUPPORTED_KHR"; + case (VK_ERROR_INVALID_VIDEO_STD_PARAMETERS_KHR): + return os << "VK_ERROR_INVALID_VIDEO_STD_PARAMETERS_KHR"; } return os << static_cast(result); }