Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
VulkanRenderTarget.hpp
1#pragma once
2
3#include <string>
4
5#include <vulkan/vulkan.h>
6
7#include <Common/Graphics/RenderTarget.hpp>
8
9namespace Grindstone::GraphicsAPI::Vulkan {
11 public:
12 RenderTarget(VkImage swapchainImage, VkFormat format, uint32_t swapchainIndex); // Build from swapchain
13 RenderTarget(VkImage image, VkImageView imageView, VkFormat colorFormat); // Built from ImGui
14 RenderTarget(const CreateInfo& createInfo);
15 virtual ~RenderTarget() override;
16 public:
17 void UpdateNativeImage(VkImage image, VkImageView imageView, VkFormat format);
18 void UpdateSwapChainImage(VkImage swapchainImage);
19 VkImage GetImage() const;
20 VkImageView GetImageView() const;
21 VkSampler GetSampler() const;
22 public:
23 virtual void Resize(uint32_t width, uint32_t height) override;
24 virtual void RenderScreen(unsigned int i, unsigned int width, unsigned int height, unsigned char *data) override;
25 private:
26 void CreateTextureSampler();
27 void Cleanup();
28 void Create();
29 private:
30 VkSampler sampler = nullptr;
31 VkImage image = nullptr;
32 VkImageView imageView = nullptr;
33 VkDeviceMemory imageMemory = nullptr;
34
35 std::string debugName;
36 ColorFormat format = ColorFormat::Invalid;
37 uint32_t width = 0;
38 uint32_t height = 0;
39 bool isSampled = false;
40 bool isWrittenByCompute = false;
41 bool hasMipChain = false;
42 bool isOwnedBySwapchain = false;
43 };
44}
Definition RenderTarget.hpp:12
Definition VulkanRenderTarget.hpp:10