Skip to content

Commit

Permalink
renderer_vulkan: Use getToolPropertiesEXT instead of getToolPropertie…
Browse files Browse the repository at this point in the history
…s (#7434)

getToolProperties is not available until Vulkan 1.3; we need to use the EXT version.
  • Loading branch information
Steveice10 authored Feb 14, 2024
1 parent b9c9bee commit 5e02be7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video_core/renderer_vulkan/vk_instance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ void Instance::CollectToolingInfo() {
if (!tooling_info) {
return;
}
const auto tools = physical_device.getToolProperties();
const auto tools = physical_device.getToolPropertiesEXT();
for (const vk::PhysicalDeviceToolProperties& tool : tools) {
const std::string_view name = tool.name;
LOG_INFO(Render_Vulkan, "Attached debugging tool: {}", name);
Expand Down

0 comments on commit 5e02be7

Please sign in to comment.