video_core: Replace VKSwapchain with Swapchain

This commit is contained in:
german77
2022-06-25 23:50:04 -05:00
parent a5e419535f
commit b5d6194f6d
5 changed files with 23 additions and 25 deletions

View File

@@ -120,8 +120,7 @@ struct BlitScreen::BufferData {
BlitScreen::BlitScreen(Core::Memory::Memory& cpu_memory_, Core::Frontend::EmuWindow& render_window_,
const Device& device_, MemoryAllocator& memory_allocator_,
VKSwapchain& swapchain_, Scheduler& scheduler_,
const ScreenInfo& screen_info_)
Swapchain& swapchain_, Scheduler& scheduler_, const ScreenInfo& screen_info_)
: cpu_memory{cpu_memory_}, render_window{render_window_}, device{device_},
memory_allocator{memory_allocator_}, swapchain{swapchain_}, scheduler{scheduler_},
image_count{swapchain.GetImageCount()}, screen_info{screen_info_} {