Browse Source

Attempt to fix building

Why do we always have so much build errors!?!
pull/11/merge^2
JPikachu 11 months ago
parent
commit
f5d9059470
  1. 2
      src/video_core/vulkan_common/vulkan_raii.h

2
src/video_core/vulkan_common/vulkan_raii.h

@ -41,7 +41,7 @@ public:
throw std::runtime_error("Failed to allocate Vulkan buffer memory"); throw std::runtime_error("Failed to allocate Vulkan buffer memory");
} }
if (vkBindBufferMemory(device_, buffer_, buffer_memory_, 0) != VK_SUCCESS) {
if Vulkan::vk:DeviceDispatch::vkBindBufferMemory(device_, buffer_, buffer_memory_, 0) != VK_SUCCESS) {
throw std::runtime_error("Failed to bind Vulkan buffer memory"); throw std::runtime_error("Failed to bind Vulkan buffer memory");
} }
} }

Loading…
Cancel
Save