Skip to content

Commit

Permalink
vulkan: Use Vulkan 1.1
Browse files Browse the repository at this point in the history
Increase Vulkan version to 1.1, which is required to support
vkGetBufferMemoryRequirements2.
  • Loading branch information
joshqti committed Sep 9, 2024
1 parent c32a767 commit 5bef14f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_conformance/common/vulkan_wrapper/vulkan_wrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ VulkanInstance::VulkanInstance(): m_vkInstance(VK_NULL_HANDLE)
vkApplicationInfo.applicationVersion = VK_MAKE_VERSION(1, 0, 0);
vkApplicationInfo.pEngineName = "No engine";
vkApplicationInfo.engineVersion = VK_MAKE_VERSION(1, 0, 0);
vkApplicationInfo.apiVersion = VK_API_VERSION_1_0;
vkApplicationInfo.apiVersion = VK_API_VERSION_1_1;

std::vector<const char *> enabledExtensionNameList;
enabledExtensionNameList.push_back(
Expand Down

0 comments on commit 5bef14f

Please sign in to comment.