20class VENOM_COMMON_API RenderPassImpl :
public PluginObjectImpl,
public GraphicsPluginObject
25 RenderPassImpl(
const RenderPassImpl&) =
delete;
26 RenderPassImpl& operator=(
const RenderPassImpl&) =
delete;
27 RenderPassImpl(RenderPassImpl&& other);
28 RenderPassImpl& operator=(RenderPassImpl&& other);
30 void Destroy()
override;
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;
38 virtual vc::Error _Init() = 0;
41 vc::RenderingPipelineType _type;
42 vc::Vector<vc::Vector<vc::Texture>> _attachments;