From 98fe631044dfde2841b7b4204adb22b72627bd4f Mon Sep 17 00:00:00 2001 From: Mike Schuchardt Date: Fri, 16 Jun 2023 11:38:00 -0700 Subject: build: Update to header 1.3.254 - Update known-good - Generate source - Only build vulkaninfo and mockicd with -DVK_ENABLE_BETA_EXTENSIONS instead of the entire repo --- common/vulkan_wrapper.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'common/vulkan_wrapper.cpp') diff --git a/common/vulkan_wrapper.cpp b/common/vulkan_wrapper.cpp index 4f993536..c48a720f 100644 --- a/common/vulkan_wrapper.cpp +++ b/common/vulkan_wrapper.cpp @@ -579,6 +579,11 @@ int InitVulkan(void) { #endif #ifdef VK_ENABLE_BETA_EXTENSIONS + vkGetPhysicalDeviceVideoEncodeQualityLevelPropertiesKHR = + reinterpret_cast( + dlsym(libvulkan, "vkGetPhysicalDeviceVideoEncodeQualityLevelPropertiesKHR")); + vkGetEncodedVideoSessionParametersKHR = + reinterpret_cast(dlsym(libvulkan, "vkGetEncodedVideoSessionParametersKHR")); vkCmdEncodeVideoKHR = reinterpret_cast(dlsym(libvulkan, "vkCmdEncodeVideoKHR")); #endif return 1; @@ -1047,6 +1052,7 @@ PFN_vkCmdExecuteGeneratedCommandsNV vkCmdExecuteGeneratedCommandsNV; PFN_vkCmdBindPipelineShaderGroupNV vkCmdBindPipelineShaderGroupNV; PFN_vkCreateIndirectCommandsLayoutNV vkCreateIndirectCommandsLayoutNV; PFN_vkDestroyIndirectCommandsLayoutNV vkDestroyIndirectCommandsLayoutNV; +PFN_vkCmdSetDepthBias2EXT vkCmdSetDepthBias2EXT; PFN_vkAcquireDrmDisplayEXT vkAcquireDrmDisplayEXT; PFN_vkGetDrmDisplayEXT vkGetDrmDisplayEXT; PFN_vkCreatePrivateDataSlotEXT vkCreatePrivateDataSlotEXT; @@ -1296,7 +1302,13 @@ PFN_vkCreateScreenSurfaceQNX vkCreateScreenSurfaceQNX; PFN_vkGetPhysicalDeviceScreenPresentationSupportQNX vkGetPhysicalDeviceScreenPresentationSupportQNX; #endif +#ifdef VK_USE_PLATFORM_SCREEN_QNX +PFN_vkGetScreenBufferPropertiesQNX vkGetScreenBufferPropertiesQNX; +#endif + #ifdef VK_ENABLE_BETA_EXTENSIONS +PFN_vkGetPhysicalDeviceVideoEncodeQualityLevelPropertiesKHR vkGetPhysicalDeviceVideoEncodeQualityLevelPropertiesKHR; +PFN_vkGetEncodedVideoSessionParametersKHR vkGetEncodedVideoSessionParametersKHR; PFN_vkCmdEncodeVideoKHR vkCmdEncodeVideoKHR; #endif -- cgit v1.2.3