// Copyright (C) 2023 Jérôme "Lynix" Leclercq (lynix680@gmail.com) // This file is part of the "Nazara Engine - Renderer module" // For conditions of distribution and use, see copyright notice in Config.hpp #pragma once #ifndef NAZARA_RENDERER_SWAPCHAIN_HPP #define NAZARA_RENDERER_SWAPCHAIN_HPP #include #include #include #include #include #include #include #include namespace Nz { class CommandPool; class RenderDevice; class NAZARA_RENDERER_API Swapchain : public RenderTarget { public: Swapchain() = default; virtual ~Swapchain(); virtual RenderFrame AcquireFrame() = 0; virtual std::shared_ptr CreateCommandPool(QueueType queueType) = 0; virtual void NotifyResize(const Vector2ui& newSize) = 0; protected: static void BuildRenderPass(PixelFormat colorFormat, PixelFormat depthFormat, std::vector& attachments, std::vector& subpassDescriptions, std::vector& subpassDependencies); }; } #endif // NAZARA_RENDERER_SWAPCHAIN_HPP