VenomEngine
Cross-Platform Modern Graphics Engine
Loading...
Searching...
No Matches
RenderPass.h
Go to the documentation of this file.
1
8#pragma once
9
13
15
16namespace venom
17{
18namespace common
19{
20class VENOM_COMMON_API RenderPassImpl : public PluginObjectImpl, public GraphicsPluginObject
21{
22public:
23 RenderPassImpl();
24 ~RenderPassImpl();
25 RenderPassImpl(const RenderPassImpl&) = delete;
26 RenderPassImpl& operator=(const RenderPassImpl&) = delete;
27 RenderPassImpl(RenderPassImpl&& other);
28 RenderPassImpl& operator=(RenderPassImpl&& other);
29
30 void Destroy() override;
31 vc::Error Init();
32
33 void SetRenderingType(const vc::RenderingPipelineType type);
34 static RenderPassImpl * GetRenderPass(const vc::RenderingPipelineType type);
35 static vc::Array<RenderPassImpl *, static_cast<int>(vc::RenderingPipelineType::Count)> GetRenderPasses();
36 RenderingPipelineType GetRenderingType() const;
37
38 virtual vc::Error _Init() = 0;
39
40protected:
41 vc::RenderingPipelineType _type;
42 vc::Vector<vc::Vector<vc::Texture>> _attachments;
43};
44
45class VENOM_COMMON_API RenderPass : public PluginObjectImplWrapper
46{
47public:
48 RenderPass();
49 ~RenderPass();
50
51 inline void SetRenderingType(const vc::RenderingPipelineType type) { _impl->As<RenderPassImpl>()->SetRenderingType(type); }
52};
53}
54}
Definition RenderPass.h:21
High-Level Frontend of the VenomEngine project. It also contains all the code shared between every AP...
Definition Callback.h:15
Contains the entirety of the code of the VenomEngine project.
Definition Callback.h:13