video_core: Replace VKSwapchain with Swapchain
This commit is contained in:
@@ -17,11 +17,11 @@ namespace Vulkan {
|
||||
class Device;
|
||||
class Scheduler;
|
||||
|
||||
class VKSwapchain {
|
||||
class Swapchain {
|
||||
public:
|
||||
explicit VKSwapchain(VkSurfaceKHR surface, const Device& device, Scheduler& scheduler,
|
||||
u32 width, u32 height, bool srgb);
|
||||
~VKSwapchain();
|
||||
explicit Swapchain(VkSurfaceKHR surface, const Device& device, Scheduler& scheduler, u32 width,
|
||||
u32 height, bool srgb);
|
||||
~Swapchain();
|
||||
|
||||
/// Creates (or recreates) the swapchain with a given size.
|
||||
void Create(u32 width, u32 height, bool srgb);
|
||||
|
||||
Reference in New Issue
Block a user