Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
VulkanDepthStencilTarget.hpp
1#pragma once
2
3#include <string>
4#include <stdint.h>
5#include <Common/Graphics/DepthStencilTarget.hpp>
6#include <vulkan/vulkan.h>
7
8namespace Grindstone::GraphicsAPI::Vulkan {
10 public:
12 virtual ~DepthStencilTarget() override;
13 public:
14 uint32_t GetWidth() const;
15 uint32_t GetHeight() const;
16
17 VkImage GetImage() const;
18 VkImageView GetImageView() const;
19 VkSampler GetSampler() const;
20 public:
21 virtual void Resize(uint32_t width, uint32_t height) override;
22 virtual void BindFace(int k);
23 private:
24 void CreateTextureSampler();
25 void Cleanup();
26 void Create();
27 private:
28 VkImage image = nullptr;
29 VkSampler sampler = nullptr;
30 VkImageView imageView = nullptr;
31 VkDeviceMemory imageMemory = nullptr;
32
33 std::string debugName;
34 DepthFormat format = DepthFormat::None;
35 uint32_t width = 0;
36 uint32_t height = 0;
37 bool isShadowMap = false;
38 bool isCubemap = false;
39 bool isSampled = false;
40 };
41}
Definition DepthStencilTarget.hpp:15
Definition VulkanDepthStencilTarget.hpp:9