41 void CreateSwapChain();
42 virtual VkSurfaceKHR GetSurface();
43 virtual VkSwapchainKHR GetSwapchain();
46 void CreateSyncObjects();
49 virtual bool Initialize(
Window *window)
override;
50 virtual bool AcquireNextImage()
override;
52 virtual bool PresentSwapchain()
override;
55 virtual uint32_t GetCurrentImageIndex()
override;
56 virtual uint32_t GetMaxFramesInFlight()
override;
57 virtual void ImmediateSetContext()
override;
58 virtual void ImmediateSwapBuffers()
override;
59 virtual void Resize(uint32_t width, uint32_t height)
override;
61 ColorFormat GetDeviceColorFormat()
const;
62 VkSurfaceFormatKHR ChooseSwapSurfaceFormat(
const std::vector<VkSurfaceFormatKHR>& availableFormats);
63 VkPresentModeKHR ChooseSwapPresentMode(
const std::vector<VkPresentModeKHR>& availablePresentModes);
64 VkExtent2D ChooseSwapExtent(
const VkSurfaceCapabilitiesKHR& capabilities);
65 void CreateImageSets();
66 void CreateRenderPass();
67 void RecreateSwapchain();
69 bool isSwapchainDirty =
false;
72 std::vector<ImageSet> imageSets;
74 ColorFormat swapchainFormat = ColorFormat::Invalid;
75 VkFormat swapchainVulkanFormat;
77 VkSurfaceKHR surface =
nullptr;
78 VkSwapchainKHR swapChain =
nullptr;
80 VkExtent2D swapExtent;
81 std::vector<VkSemaphore> imageAvailableSemaphores;
82 std::vector<VkSemaphore> renderFinishedSemaphores;
83 std::vector<VkFence> inFlightFences;
84 uint32_t currentFrame = 0;
85 uint32_t maxFramesInFlight = 0;
86 uint32_t currentSwapchainImageIndex = 0;