Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
VulkanRenderPass.hpp
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <Common/Graphics/RenderPass.hpp>
7#include <vulkan/vulkan.h>
8
9namespace Grindstone::GraphicsAPI::Vulkan {
11 public:
12 RenderPass(VkRenderPass renderPass, const char* renderPassName);
13 RenderPass(const CreateInfo& createInfo);
14 virtual ~RenderPass() override;
15 public:
16 void Update(VkRenderPass renderPass);
17 virtual VkRenderPass GetRenderPassHandle() const;
18 virtual const char* GetDebugName() const override;
19 virtual const float* GetDebugColor() const override;
20
21 private:
22 void Create();
23 void Cleanup();
24
25 std::string debugName;
26 float debugColor[4] = {};
27 std::vector<RenderPass::AttachmentInfo> colorAttachments;
28 DepthFormat depthFormat = DepthFormat::None;
29 bool shouldClearDepthOnLoad = true;
30 VkRenderPass renderPass = nullptr;
31 };
32}
Definition RenderPass.hpp:27
Definition VulkanRenderPass.hpp:10