[samples] Add missing explicit casts

This commit is contained in:
mocabe
2020-03-20 03:59:14 +09:00
parent 2f4ca1d168
commit 62667a6b4b
3 changed files with 6 additions and 6 deletions

View File

@@ -671,11 +671,11 @@ namespace vk
, window(vk::su::createWindow(windowName, extent))
{
VkSurfaceKHR _surface;
VkResult err = glfwCreateWindowSurface(instance.get(), window.handle, nullptr, &_surface);
VkResult err = glfwCreateWindowSurface(VkInstance(instance.get()), window.handle, nullptr, &_surface);
if (err != VK_SUCCESS)
throw std::runtime_error("Failed to create window!");
vk::ObjectDestroy<vk::Instance, VULKAN_HPP_DEFAULT_DISPATCHER_TYPE> _deleter(instance.get());
surface = vk::UniqueSurfaceKHR(_surface, _deleter);
surface = vk::UniqueSurfaceKHR(vk::SurfaceKHR(_surface), _deleter);
}
SwapChainData::SwapChainData(vk::PhysicalDevice const& physicalDevice, vk::UniqueDevice const& device, vk::SurfaceKHR const& surface, vk::Extent2D const& extent, vk::ImageUsageFlags usage,