Classes | Public Types | Public Member Functions | Static Public Attributes | Protected Types | Protected Member Functions | Protected Attributes
Ogre::CompositorChain Class Reference

Chain of compositor effects applying to one viewport. More...

#include <OgreCompositorChain.h>

Inheritance diagram for Ogre::CompositorChain:
Inheritance graph
[legend]

List of all members.

Classes

class  RQListener
 Render queue listener used to set up rendering events. More...

Public Types

typedef VectorIterator< InstancesInstanceIterator
typedef vector
< CompositorInstance * >::type 
Instances
 Data types.

Public Member Functions

 CompositorChain (Viewport *vp)
virtual ~CompositorChain ()
 Another gcc warning here, which is no problem because RenderTargetListener is never used to delete an object.
void _compile ()
 Compile this Composition chain into a series of RenderTarget operations.
CompositorInstance_getOriginalSceneCompositor (void)
 Get the original scene compositor instance for this chain (internal use).
void _markDirty ()
 Mark state as dirty, and to be recompiled next frame.
void _queuedOperation (CompositorInstance::RenderSystemOperation *op)
 Internal method for registering a queued operation for deletion later.
void _removeInstance (CompositorInstance *i)
 Remove a compositor by pointer.
CompositorInstanceaddCompositor (CompositorPtr filter, size_t addPosition=LAST, const String &scheme=StringUtil::BLANK)
 Apply a compositor.
CompositorInstancegetCompositor (size_t index)
 Get compositor instance by position.
CompositorInstancegetCompositor (const String &name)
 Get compositor instance by name.
InstanceIterator getCompositors ()
 Get an iterator over the compositor instances.
CompositorInstancegetNextInstance (CompositorInstance *curr, bool activeOnly=true)
 Get the next instance in this chain to the one specified.
size_t getNumCompositors ()
 Get the number of compositors.
CompositorInstancegetPreviousInstance (CompositorInstance *curr, bool activeOnly=true)
 Get the previous instance in this chain to the one specified.
ViewportgetViewport ()
 Get viewport that is the target of this chain.
void operator delete (void *ptr)
void operator delete (void *ptr, void *)
void operator delete (void *ptr, const char *, int, const char *)
void operator delete[] (void *ptr)
void operator delete[] (void *ptr, const char *, int, const char *)
void * operator new (size_t sz, const char *file, int line, const char *func)
 operator new, with debug line info
void * operator new (size_t sz)
void * operator new (size_t sz, void *ptr)
 placement operator new
void * operator new[] (size_t sz, const char *file, int line, const char *func)
 array operator new, with debug line info
void * operator new[] (size_t sz)
virtual void postRenderTargetUpdate (const RenderTargetEvent &evt)
virtual void postViewportUpdate (const RenderTargetViewportEvent &evt)
virtual void preRenderTargetUpdate (const RenderTargetEvent &evt)
virtual void preViewportUpdate (const RenderTargetViewportEvent &evt)
void removeAllCompositors ()
 Remove all compositors.
void removeCompositor (size_t position=LAST)
 Remove a compositor.
void setCompositorEnabled (size_t position, bool state)
 Enable or disable a compositor, by position.
virtual void viewportAdded (const RenderTargetViewportEvent &evt)
 Called to notify listener that a Viewport has been added to the target in question.
virtual void viewportCameraChanged (Viewport *viewport)
virtual void viewportDestroyed (Viewport *viewport)
virtual void viewportDimensionsChanged (Viewport *viewport)
virtual void viewportRemoved (const RenderTargetViewportEvent &evt)
 Called to notify listener that a Viewport has been removed from the target in question.

Static Public Attributes

static const size_t BEST = 0
 Identifier for best technique.
static const size_t LAST = (size_t)-1
 Identifier for "last" compositor in chain.

Protected Types

typedef vector
< CompositorInstance::RenderSystemOperation * >
::type 
RenderSystemOperations
 Render System operations queued by last compile, these are created by this instance thus managed and deleted by it.

Protected Member Functions

void clearCompiledState ()
 Clear compiled state.
void createOriginalScene ()
void destroyOriginalScene ()
void destroyResources (void)
 destroy internal resources
void postTargetOperation (CompositorInstance::TargetOperation &op, Viewport *vp, Camera *cam)
 Restore a viewport, the camera and the scene after a rendering operation.
void preTargetOperation (CompositorInstance::TargetOperation &op, Viewport *vp, Camera *cam)
 Prepare a viewport, the camera and the scene for a rendering operation.

Protected Attributes

bool mAnyCompositorsEnabled
 Any compositors enabled?
CompositorInstance::CompiledState mCompiledState
 Compiled state (updated with _compile)
bool mDirty
 State needs recompile.
Instances mInstances
 Postfilter instances in this chain.
unsigned int mOldClearEveryFrameBuffers
 Old viewport settings.
bool mOldFindVisibleObjects
 Store old find visible objects.
float mOldLodBias
 Store old camera LOD bias.
String mOldMaterialScheme
 Store old viewport material scheme.
bool mOldShadowsEnabled
 Store old shadows enabled flag.
uint32 mOldVisibilityMask
 Store old scene visibility mask.
CompositorInstancemOriginalScene
 Plainly renders the scene; implicit first compositor in the chain.
String mOriginalSceneScheme
RQListener mOurListener
CompositorInstance::TargetOperation mOutputOperation
RenderSystemOperations mRenderSystemOperations
ViewportmViewport
 Viewport affected by this CompositorChain.

Detailed Description

Chain of compositor effects applying to one viewport.

Definition at line 48 of file OgreCompositorChain.h.


Member Typedef Documentation

Definition at line 59 of file OgreCompositorChain.h.

Data types.

Definition at line 58 of file OgreCompositorChain.h.

Render System operations queued by last compile, these are created by this instance thus managed and deleted by it.

The list is cleared with clearCompilationState()

Definition at line 181 of file OgreCompositorChain.h.


Constructor & Destructor Documentation

Another gcc warning here, which is no problem because RenderTargetListener is never used to delete an object.


Member Function Documentation

Compile this Composition chain into a series of RenderTarget operations.

Get the original scene compositor instance for this chain (internal use).

Definition at line 100 of file OgreCompositorChain.h.

Mark state as dirty, and to be recompiled next frame.

Internal method for registering a queued operation for deletion later.

Remove a compositor by pointer.

This is internally used by CompositionTechnique to "weak" remove any instanced of a deleted technique.

CompositorInstance* Ogre::CompositorChain::addCompositor ( CompositorPtr  filter,
size_t  addPosition = LAST,
const String scheme = StringUtil::BLANK 
)

Apply a compositor.

Initially, the filter is enabled.

Parameters:
filterFilter to apply.
addPositionPosition in filter chain to insert this filter at; defaults to the end (last applied filter).
schemeScheme to use (blank means default).

Clear compiled state.

void Ogre::CompositorChain::destroyResources ( void  ) [protected]

destroy internal resources

Get compositor instance by position.

Get compositor instance by name.

Returns null if not found.

Get an iterator over the compositor instances.

The first compositor in this list is applied first, the last one is applied last.

Get the next instance in this chain to the one specified.

Get the number of compositors.

Get the previous instance in this chain to the one specified.

Get viewport that is the target of this chain.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr) [inherited]

Definition at line 96 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr,
void *   
) [inherited]

Definition at line 102 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete ( void *  ptr,
const char *  ,
int  ,
const char *   
) [inherited]

Definition at line 108 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void *  ptr) [inherited]

Definition at line 113 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void Ogre::AllocatedObject< Alloc >::operator delete[] ( void *  ptr,
const char *  ,
int  ,
const char *   
) [inherited]

Definition at line 119 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
const char *  file,
int  line,
const char *  func 
) [inherited]

operator new, with debug line info

Definition at line 68 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz) [inherited]

Definition at line 73 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new ( size_t  sz,
void *  ptr 
) [inherited]

placement operator new

Definition at line 79 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz,
const char *  file,
int  line,
const char *  func 
) [inherited]

array operator new, with debug line info

Definition at line 86 of file OgreMemoryAllocatedObject.h.

template<class Alloc >
void* Ogre::AllocatedObject< Alloc >::operator new[] ( size_t  sz) [inherited]

Definition at line 91 of file OgreMemoryAllocatedObject.h.

virtual void Ogre::CompositorChain::postRenderTargetUpdate ( const RenderTargetEvent evt) [virtual]

Restore a viewport, the camera and the scene after a rendering operation.

virtual void Ogre::CompositorChain::preRenderTargetUpdate ( const RenderTargetEvent evt) [virtual]

Prepare a viewport, the camera and the scene for a rendering operation.

Remove all compositors.

void Ogre::CompositorChain::removeCompositor ( size_t  position = LAST)

Remove a compositor.

Parameters:
positionPosition in filter chain of filter to remove; defaults to the end (last applied filter)
void Ogre::CompositorChain::setCompositorEnabled ( size_t  position,
bool  state 
)

Enable or disable a compositor, by position.

Disabling a compositor stops it from rendering but does not free any resources. This can be more efficient than using removeCompositor and addCompositor in cases the filter is switched on and off a lot.

Parameters:
positionPosition in filter chain of filter
virtual void Ogre::RenderTargetListener::viewportAdded ( const RenderTargetViewportEvent evt) [virtual, inherited]

Called to notify listener that a Viewport has been added to the target in question.

Definition at line 134 of file OgreRenderTargetListener.h.

virtual void Ogre::CompositorChain::viewportCameraChanged ( Viewport viewport) [virtual]
virtual void Ogre::CompositorChain::viewportDestroyed ( Viewport viewport) [virtual]
virtual void Ogre::CompositorChain::viewportDimensionsChanged ( Viewport viewport) [virtual]
virtual void Ogre::RenderTargetListener::viewportRemoved ( const RenderTargetViewportEvent evt) [virtual, inherited]

Called to notify listener that a Viewport has been removed from the target in question.

Definition at line 139 of file OgreRenderTargetListener.h.


Member Data Documentation

const size_t Ogre::CompositorChain::BEST = 0 [static]

Identifier for best technique.

Definition at line 64 of file OgreCompositorChain.h.

const size_t Ogre::CompositorChain::LAST = (size_t)-1 [static]

Identifier for "last" compositor in chain.

Definition at line 62 of file OgreCompositorChain.h.

Any compositors enabled?

Definition at line 171 of file OgreCompositorChain.h.

Compiled state (updated with _compile)

Definition at line 176 of file OgreCompositorChain.h.

State needs recompile.

Definition at line 169 of file OgreCompositorChain.h.

Postfilter instances in this chain.

Definition at line 166 of file OgreCompositorChain.h.

Old viewport settings.

Definition at line 231 of file OgreCompositorChain.h.

Store old find visible objects.

Definition at line 235 of file OgreCompositorChain.h.

Store old camera LOD bias.

Definition at line 237 of file OgreCompositorChain.h.

Store old viewport material scheme.

Definition at line 239 of file OgreCompositorChain.h.

Store old shadows enabled flag.

Definition at line 241 of file OgreCompositorChain.h.

Store old scene visibility mask.

Definition at line 233 of file OgreCompositorChain.h.

Plainly renders the scene; implicit first compositor in the chain.

Definition at line 163 of file OgreCompositorChain.h.

Definition at line 173 of file OgreCompositorChain.h.

Definition at line 229 of file OgreCompositorChain.h.

Definition at line 177 of file OgreCompositorChain.h.

Definition at line 182 of file OgreCompositorChain.h.

Viewport affected by this CompositorChain.

Definition at line 159 of file OgreCompositorChain.h.


The documentation for this class was generated from the following file:

Copyright © 2012 Torus Knot Software Ltd
Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
Last modified Mon Jul 27 2020 13:40:53