mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-23 21:25:46 +00:00
renderer_vulkan/wrapper: Add swapchain handle
This commit is contained in:
parent
cea9fdab2e
commit
a04066352b
2 changed files with 15 additions and 0 deletions
|
@ -647,4 +647,11 @@ public:
|
|||
VkCommandBufferLevel level = VK_COMMAND_BUFFER_LEVEL_PRIMARY) const;
|
||||
};
|
||||
|
||||
class SwapchainKHR : public Handle<VkSwapchainKHR, VkDevice, DeviceDispatch> {
|
||||
using Handle<VkSwapchainKHR, VkDevice, DeviceDispatch>::Handle;
|
||||
|
||||
public:
|
||||
std::vector<VkImage> GetImages() const;
|
||||
};
|
||||
|
||||
} // namespace Vulkan::vk
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue