Update Vulkan-Hpp to v1.2.202

This commit is contained in:
Billy Laws
2021-12-08 22:05:12 +00:00
committed by PixelyIon
parent bd6cd0056c
commit 5815cda7a7
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@
namespace skyline::gpu {
CommandScheduler::CommandBufferSlot::CommandBufferSlot(vk::raii::Device &device, vk::CommandBuffer commandBuffer, vk::raii::CommandPool &pool)
: device(device),
commandBuffer(device, commandBuffer, pool),
commandBuffer(device, static_cast<VkCommandBuffer>(commandBuffer), static_cast<VkCommandPool>(*pool)),
fence(device, vk::FenceCreateInfo{}),
cycle(std::make_shared<FenceCycle>(device, *fence)) {}