19class VENOM_COMMON_API RenderTargetImpl :
public PluginObjectImpl,
public GraphicsPluginObject
25 const Texture * GetTexture()
const;
27 virtual void Destroy()
override;
29 vc::Error SetDimensions(
int width,
int height);
30 vc::Error SetFormat(ShaderVertexFormat format);
33 int GetHeight()
const;
34 ShaderVertexFormat GetFormat()
const;
37 void SetRenderingPipelineType(vc::RenderingPipelineType type);
38 vc::RenderingPipelineType GetRenderingPipelineType()
const;
40 static const vc::Vector<RenderTargetImpl *> & GetAllRenderTargets();
43 virtual vc::Error __PrepareRenderTarget() = 0;
46 vc::Error __ReloadTexture();
49 Texture __texture[VENOM_MAX_FRAMES_IN_FLIGHT];
50 int __width, __height;
51 ShaderVertexFormat __format;
53 vc::RenderingPipelineType __renderingPipelineType;
55 friend class RenderTarget;