VenomEngine
Cross-Platform Modern Graphics Engine
Loading...
Searching...
No Matches
RenderPass.h
1
8#pragma once
9
15
16namespace venom
17{
18namespace vulkan
19{
20class AttachmentsManager
21{
22public:
23 AttachmentsManager();
24 ~AttachmentsManager();
25
26 static AttachmentsManager * Get();
27
28public:
29 vc::Vector<vc::Vector<vc::Texture>> attachments;
30 vc::Vector<vc::Vector<vc::Texture>> resolveAttachments;
31};
32
33class VulkanRenderPass : public vc::RenderPassImpl
34{
35public:
36 VulkanRenderPass();
37 ~VulkanRenderPass();
38 VulkanRenderPass(const VulkanRenderPass&) = delete;
39 VulkanRenderPass& operator=(const VulkanRenderPass&) = delete;
40 VulkanRenderPass(VulkanRenderPass&& other);
41 VulkanRenderPass& operator=(VulkanRenderPass&& other);
42
43 void ClearRenderPass();
44
45 void SetRenderingType(const vc::RenderingPipelineType type);
46 vc::Error _Init() override;
47 vc::Error BeginRenderPass(CommandBuffer * commandBuffer, int framebufferIndex);
48 vc::Error BeginRenderPassCustomFramebuffer(CommandBuffer * commandBuffer, const Framebuffer * const framebuffer);
49 void NextSubpass(CommandBuffer * commandBuffer);
50 vc::Error EndRenderPass(CommandBuffer * commandBuffer);
51 VkRenderPass GetVkRenderPass() const;
52
53 Framebuffer * GetFramebuffer(const int index);
54 Framebuffer * GetCurrentFramebuffer();
55
56 inline const vc::Vector<VkSubpassDescription> & GetSubpassDescriptions() const { return __subpassDescriptions; }
57 inline vc::Vector<vc::Vector<vc::Texture>> & GetAttachments() { return __attachments; }
58
59 inline static VulkanRenderPass * GetVulkanRenderPass(const vc::RenderingPipelineType type) { return GetRenderPass(type)->DAs<VulkanRenderPass>(); }
60
61private:
62 vc::Error __CreateNormalRenderPass();
63 vc::Error __CreateCSMRenderPass();
64 vc::Error __CreateGuiRenderPass();
65 vc::Error __CreateDeferredShadowRenderPass();
66
67 void __AddAttachment(const VkFormat format, const VkImageLayout layout, const VkAttachmentLoadOp loadOp, const VkImageLayout initalLayout, bool resolve);
68 void __SolveAttachmentReferences();
69
70private:
71 VkRenderPass __renderPass;
72 // By image count then attachments
73 vc::Vector<vc::Vector<vc::Texture>> __attachments;
74 vc::Vector<Framebuffer> __framebuffers;
75
76 vc::Vector<VkAttachmentDescription> __attachmentDescriptions;
77 vc::Vector<VkAttachmentDescription> __resolveAttachmentDescriptions;
78 vc::Vector<VkAttachmentReference> __attachmentRefs;
79 vc::Vector<VkAttachmentReference> __resolveAttachmentRefs;
80
81 vc::Vector<VkSubpassDescription> __subpassDescriptions;
82
83 vc::Vector<VkClearValue> __clearValues;
84};
85}
86}
Definition RenderPass.h:21
Command Buffer class, only instanciable by VulkanCommandPool. To use them, you need to create a Vulka...
Definition CommandPool.h:58
Definition Framebuffer.h:22
Encapsulation of Vulkan for the front end of VenomEngine.
Definition Allocator.h:18
Contains the entirety of the code of the VenomEngine project.
Definition Callback.h:13