VenomEngine
Cross-Platform Modern Graphics Engine
Loading...
Searching...
No Matches
RenderTarget.h
Go to the documentation of this file.
1
8#pragma once
11
12namespace venom
13{
14namespace common
15{
16class RenderTarget;
17class Camera;
18
19class VENOM_COMMON_API RenderTargetImpl : public PluginObjectImpl, public GraphicsPluginObject
20{
21public:
22 RenderTargetImpl();
23 ~RenderTargetImpl();
24
25 const Texture * GetTexture() const;
26 vc::Error Reset();
27 virtual void Destroy() override;
28
29 vc::Error SetDimensions(int width, int height);
30 vc::Error SetFormat(ShaderVertexFormat format);
31
32 int GetWidth() const;
33 int GetHeight() const;
34 ShaderVertexFormat GetFormat() const;
35
36 void LinkCamera(vc::Camera * camera);
37 void SetRenderingPipelineType(vc::RenderingPipelineType type);
38 vc::RenderingPipelineType GetRenderingPipelineType() const;
39
40 static const vc::Vector<RenderTargetImpl *> & GetAllRenderTargets();
41
42protected:
43 virtual vc::Error __PrepareRenderTarget() = 0;
44
45private:
46 vc::Error __ReloadTexture();
47
48private:
49 Texture __texture[VENOM_MAX_FRAMES_IN_FLIGHT];
50 int __width, __height;
51 ShaderVertexFormat __format;
52 vc::Camera * __camera;
53 vc::RenderingPipelineType __renderingPipelineType;
54
55 friend class RenderTarget;
56};
57
58class VENOM_COMMON_API RenderTarget : public PluginObjectImplWrapper
59{
60public:
61 RenderTarget(vc::RenderingPipelineType renderingPipeline, ShaderVertexFormat format);
62
63 const Texture * GetTexture() const { return GetImpl()->As<RenderTargetImpl>()->GetTexture(); }
64};
65}
66}
Camera class Classic layout with position, rotation and projection matrices.
Definition Camera.h:132
Definition RenderTarget.h:59
Definition RenderTarget.h:20
Definition Texture.h:179
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