VenomEngine
Cross-Platform Modern Graphics Engine
Loading...
Searching...
No Matches
Light.h
Go to the documentation of this file.
1
8#pragma once
11#include <venom/vulkan/plugin/graphics/RenderPass.h>
14
15namespace venom
16{
17namespace vulkan
18{
19class VulkanLight : public vc::LightImpl
20{
21public:
22 VulkanLight();
23 virtual ~VulkanLight();
24
25 inline const vc::Vector<Framebuffer> & GetShadowMapFramebuffers(const int frameIndex, const int cascadeIndex) const { return (*__shadowMapFramebuffers)[frameIndex][cascadeIndex]; }
26 inline const DescriptorSet & GetShadowMapDescriptorSet() { return __shadowMapDescriptorSet->GetCurrentSet(); }
27
28protected:
29 vc::Error _SetType(const vc::LightType type) override;
30 void _SetDescriptorsFromCascade(const int cascadeIndex) override;
31
32private:
33 vc::Error __CreateFramebuffer(Framebuffer & framebuffer, VulkanRenderPass * csmRenderPass, ImageView & imageView, VkExtent2D & extent);
34private:
35 vc::DeferredTrash<vc::Array2D<vc::Vector<Framebuffer>, VENOM_MAX_FRAMES_IN_FLIGHT, VENOM_CSM_TOTAL_CASCADES>> __shadowMapFramebuffers;
36 DescriptorSetGroup * __shadowMapDescriptorSet;
37 vc::Array<int, VENOM_MAX_FRAMES_IN_FLIGHT> __lastCascades;
38};
39}
40}
Definition DeferredTrash.h:62
Definition Light.h:48
Regroups descriptor sets by frame, so if updates have to be done by group, they will be done on the g...
Definition DescriptorPool.h:25
Definition DescriptorSet.h:22
Definition Framebuffer.h:22
Definition ImageView.h:18
Definition RenderPass.h:34
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