38 VulkanRenderPass(
const VulkanRenderPass&) =
delete;
39 VulkanRenderPass& operator=(
const VulkanRenderPass&) =
delete;
40 VulkanRenderPass(VulkanRenderPass&& other);
41 VulkanRenderPass& operator=(VulkanRenderPass&& other);
43 void ClearRenderPass();
45 void SetRenderingType(
const vc::RenderingPipelineType type);
46 vc::Error _Init()
override;
47 vc::Error BeginRenderPass(
CommandBuffer * commandBuffer,
int framebufferIndex);
51 VkRenderPass GetVkRenderPass()
const;
56 inline const vc::Vector<VkSubpassDescription> & GetSubpassDescriptions()
const {
return __subpassDescriptions; }
57 inline vc::Vector<vc::Vector<vc::Texture>> & GetAttachments() {
return __attachments; }
59 inline static VulkanRenderPass * GetVulkanRenderPass(
const vc::RenderingPipelineType type) {
return GetRenderPass(type)->DAs<VulkanRenderPass>(); }
62 vc::Error __CreateNormalRenderPass();
63 vc::Error __CreateCSMRenderPass();
64 vc::Error __CreateGuiRenderPass();
65 vc::Error __CreateDeferredShadowRenderPass();
67 void __AddAttachment(
const VkFormat format,
const VkImageLayout layout,
const VkAttachmentLoadOp loadOp,
const VkImageLayout initalLayout,
bool resolve);
68 void __SolveAttachmentReferences();
71 VkRenderPass __renderPass;
73 vc::Vector<vc::Vector<vc::Texture>> __attachments;
74 vc::Vector<Framebuffer> __framebuffers;
76 vc::Vector<VkAttachmentDescription> __attachmentDescriptions;
77 vc::Vector<VkAttachmentDescription> __resolveAttachmentDescriptions;
78 vc::Vector<VkAttachmentReference> __attachmentRefs;
79 vc::Vector<VkAttachmentReference> __resolveAttachmentRefs;
81 vc::Vector<VkSubpassDescription> __subpassDescriptions;
83 vc::Vector<VkClearValue> __clearValues;
Command Buffer class, only instanciable by VulkanCommandPool. To use them, you need to create a Vulka...
Definition CommandPool.h:58