| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include "BsRenderBeastPrerequisites.h"
- #include "BsPixelUtil.h"
- namespace BansheeEngine
- {
- /** @addtogroup RenderBeast
- * @{
- */
- /**
- * Allocates and handles all the required render targets for rendering a scene from a specific viewport.
- *
- * @note Core thread only.
- */
- class BS_BSRND_EXPORT RenderTargets
- {
- public:
- /**
- * Creates a new set of render targets. This will not actually allocate the internal render targets - this happens
- * the first time you call bind().
- *
- * @param[in] viewport Viewport that the render targets will be used for. Determines size of the render
- * targets, and the output color render target.
- * @param[in] hdr Should the render targets support high dynamic range rendering.
- * @param[in] numSamples Number of samples to use if multisampling is active. Provide 0 or 1 if multisampled
- * targets are not needed.
- */
- static SPtr<RenderTargets> create(const SPtr<ViewportCore>& viewport, bool hdr, UINT32 numSamples);
- /**
- * Allocates the textures required for rendering. Allocations are pooled so this is generally a fast operation
- * unless the size or other render target options changed. This must be called before binding render targets.
- */
- void allocate();
- /**
- * Deallocates textures by returning them to the pool. This should be done when the caller is done using the render
- * targets, so that other systems might re-use them. This will not release any memory unless all render targets
- * pointing to those textures go out of scope.
- */
- void release();
- /** Binds the GBuffer render target for rendering. */
- void bindGBuffer();
- /** Binds the scene color render target for rendering. */
- void bindSceneColor(bool readOnlyDepthStencil);
- /** Returns the scene color render target. */
- SPtr<RenderTextureCore> getSceneColorRT() const { return mSceneColorRT; }
- /** Returns the first color texture of the gbuffer as a bindable texture. */
- SPtr<TextureCore> getTextureA() const;
- /** Returns the second color texture of the gbuffer as a bindable texture. */
- SPtr<TextureCore> getTextureB() const;
- /** Returns the depth texture of the gbuffer as a bindable texture. */
- SPtr<TextureCore> getTextureDepth() const;
- /** Checks if the targets support HDR rendering. */
- bool getHDR() const { return mHDR; }
- /** Returns the number of samples per pixel supported by the targets. */
- UINT32 getNumSamples() const { return mNumSamples; }
- private:
- RenderTargets(const SPtr<ViewportCore>& viewport, bool hdr, UINT32 numSamples);
- /** Returns the width of gbuffer textures, in pixels. */
- UINT32 getWidth() const;
- /** Returns the height of gbuffer textures, in pixels. */
- UINT32 getHeight() const;
- SPtr<ViewportCore> mViewport;
- SPtr<PooledRenderTexture> mSceneColorTex;
- SPtr<PooledRenderTexture> mAlbedoTex;
- SPtr<PooledRenderTexture> mNormalTex;
- SPtr<PooledRenderTexture> mDepthTex;
- SPtr<MultiRenderTextureCore> mGBufferRT;
- SPtr<RenderTextureCore> mSceneColorRT;
- PixelFormat mSceneColorFormat;
- PixelFormat mAlbedoFormat;
- PixelFormat mNormalFormat;
- UINT32 mNumSamples;
- bool mHDR;
- };
- /** @} */
- }
|