|
| GL3PlusDepthBuffer (uint16 poolId, GL3PlusRenderSystem *renderSystem, GLContext *creatorContext, GL3PlusRenderBuffer *depth, GL3PlusRenderBuffer *stencil, uint32 width, uint32 height, uint32 fsaa, uint32 multiSampleQuality, bool manual) |
|
| ~GL3PlusDepthBuffer () |
|
virtual void | _notifyRenderTargetAttached (RenderTarget *renderTarget) |
| Called when a RenderTarget is attaches this DepthBuffer. More...
|
|
virtual void | _notifyRenderTargetDetached (RenderTarget *renderTarget) |
| Called when a RenderTarget is detaches from this DepthBuffer. More...
|
|
void | _setPoolId (uint16 poolId) |
| Sets the pool id in which this DepthBuffer lives. More...
|
|
virtual uint16 | getBitDepth () const |
|
GL3PlusRenderBuffer * | getDepthBuffer () const |
|
uint32 | getFSAA () const |
|
uint32 | getFsaa () const |
|
const String & | getFSAAHint () const |
|
const String & | getFsaaHint () const |
|
GL3PlusContext * | getGLContext () const |
|
virtual uint32 | getHeight () const |
|
virtual uint16 | getPoolId () const |
| Gets the pool id in which this DepthBuffer lives. More...
|
|
GL3PlusRenderBuffer * | getStencilBuffer () const |
|
virtual uint32 | getWidth () const |
|
virtual bool | isCompatible (RenderTarget *renderTarget) const |
| Returns whether the specified RenderTarget is compatible with this DepthBuffer That is, this DepthBuffer can be attached to that RenderTarget. More...
|
|
bool | isManual () const |
| Manual DepthBuffers are cleared in RenderSystem's destructor. More...
|
|
OpenGL supports 3 different methods: FBO, pbuffer & Copy. Each one has it's own limitations. Non-FBO methods are solved using "dummy" DepthBuffers. That is, a DepthBuffer pointer is attached to the RenderTarget (for the sake of consistency) but it doesn't actually contain a Depth surface/renderbuffer (mDepthBuffer & mStencilBuffer are null pointers all the time) Those dummy DepthBuffers are identified thanks to their GL context. Note that FBOs don't allow sharing with the main window's depth buffer. Therefore even when FBO is enabled, a dummy DepthBuffer is still used to manage the windows.