blob: 624b99dbf003b5b93af339bf8703b70f7216d9ca [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_IMPELLER_RENDERER_BACKEND_VULKAN_SWAPCHAIN_SWAPCHAIN_VK_H_
#define FLUTTER_IMPELLER_RENDERER_BACKEND_VULKAN_SWAPCHAIN_SWAPCHAIN_VK_H_
#include <memory>
#include "impeller/geometry/size.h"
#include "impeller/renderer/backend/vulkan/vk.h"
#include "impeller/renderer/context.h"
#include "impeller/renderer/surface.h"
namespace impeller {
//------------------------------------------------------------------------------
/// @brief A swapchain that adapts to the underlying surface going out of
/// date. If the caller cannot acquire the next drawable, it is due
/// to an unrecoverable error and the swapchain must be recreated
/// with a new surface.
///
class SwapchainVK {
public:
static std::shared_ptr<SwapchainVK> Create(
const std::shared_ptr<Context>& context,
vk::UniqueSurfaceKHR surface,
const ISize& size,
bool enable_msaa = true);
virtual ~SwapchainVK();
SwapchainVK(const SwapchainVK&) = delete;
SwapchainVK& operator=(const SwapchainVK&) = delete;
virtual bool IsValid() const = 0;
virtual std::unique_ptr<Surface> AcquireNextDrawable() = 0;
virtual vk::Format GetSurfaceFormat() const = 0;
/// @brief Mark the current swapchain configuration as dirty, forcing it to be
/// recreated on the next frame.
virtual void UpdateSurfaceSize(const ISize& size) = 0;
protected:
SwapchainVK();
};
} // namespace impeller
#endif // FLUTTER_IMPELLER_RENDERER_BACKEND_VULKAN_SWAPCHAIN_SWAPCHAIN_VK_H_