mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-22 20:39:20 +01:00
Update Vulkan-Hpp to v1.2.202
This commit is contained in:
parent
bd6cd0056c
commit
5815cda7a7
@ -1 +1 @@
|
|||||||
Subproject commit 4bcd301070d7d4a3d6ca191da96430025d708a6a
|
Subproject commit 80dada6a7b455cf18c39788d70aa7711323ea977
|
@ -7,7 +7,7 @@
|
|||||||
namespace skyline::gpu {
|
namespace skyline::gpu {
|
||||||
CommandScheduler::CommandBufferSlot::CommandBufferSlot(vk::raii::Device &device, vk::CommandBuffer commandBuffer, vk::raii::CommandPool &pool)
|
CommandScheduler::CommandBufferSlot::CommandBufferSlot(vk::raii::Device &device, vk::CommandBuffer commandBuffer, vk::raii::CommandPool &pool)
|
||||||
: device(device),
|
: device(device),
|
||||||
commandBuffer(device, commandBuffer, pool),
|
commandBuffer(device, static_cast<VkCommandBuffer>(commandBuffer), static_cast<VkCommandPool>(*pool)),
|
||||||
fence(device, vk::FenceCreateInfo{}),
|
fence(device, vk::FenceCreateInfo{}),
|
||||||
cycle(std::make_shared<FenceCycle>(device, *fence)) {}
|
cycle(std::make_shared<FenceCycle>(device, *fence)) {}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user