blob: c5c983f73aadb379082cec0aa541cee94d8a806c [file] [log] [blame]
// Copyright 2020 The Fuchsia 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 SRC_GRAPHICS_EXAMPLES_VKPRIMER_COMMON_VULKAN_IMAGE_VIEW_H_
#define SRC_GRAPHICS_EXAMPLES_VKPRIMER_COMMON_VULKAN_IMAGE_VIEW_H_
#include "src/lib/fxl/macros.h"
#include "vulkan_logical_device.h"
#include "vulkan_physical_device.h"
#include <vulkan/vulkan.hpp>
//
// VulkanImageView provides an image view with a backing |image_| and
// |image_memory_| suitable as a color attachment for rendering.
//
class VulkanImageView {
public:
VulkanImageView(std::shared_ptr<VulkanLogicalDevice> device,
std::shared_ptr<VulkanPhysicalDevice> phys_device,
const vk::Extent2D &extent = {1024, 768});
VulkanImageView() = delete;
bool Init();
const vk::Extent2D &extent() const { return extent_; }
const vk::Format &format() const { return format_; }
const vk::UniqueDeviceMemory &image_memory() const { return image_memory_; }
const vk::UniqueImage &image() const { return image_; }
const vk::UniqueImageView &view() const { return view_; }
private:
FXL_DISALLOW_COPY_AND_ASSIGN(VulkanImageView);
bool initialized_;
std::shared_ptr<VulkanLogicalDevice> device_;
std::shared_ptr<VulkanPhysicalDevice> phys_device_;
vk::UniqueImage image_;
vk::UniqueDeviceMemory image_memory_;
vk::Extent2D extent_;
vk::Format format_;
vk::UniqueImageView view_;
};
#endif // SRC_GRAPHICS_EXAMPLES_VKPRIMER_COMMON_VULKAN_IMAGE_VIEW_H_