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

@ -1 +1 @@
Subproject commit 4bcd301070d7d4a3d6ca191da96430025d708a6a
Subproject commit 80dada6a7b455cf18c39788d70aa7711323ea977

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)) {}