Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 29, 2012, 3:48:20 PM (12 years ago)
Author:
davidsa
Message:

Added documentation to orxonox::RenderQueueListener

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/shaders/src/orxonox/RenderQueueListener.cc

    r9407 r9419  
    2828 */
    2929
     30/**
     31  @file RenderQueueListener.cc
     32  @brief Definition of the RenderQueueListener class.
     33*/
     34
    3035#include "RenderQueueListener.h"
    3136
     
    3540namespace orxonox
    3641{
     42    /**
     43    @brief
     44    This function is called just before a RenderQueueGroup is rendered, this function is called by Ogre automatically with the correct parameters.
     45
     46    In this case we use it to set the stencil buffer parameters of the render system
     47    */
    3748    void RenderQueueListener::renderQueueStarted(Ogre::uint8 queueGroupId, const Ogre::String& invocation, bool& skipThisInvocation)
    3849    {
     
    5667        }
    5768    }
    58    
     69   
     70    /**
     71    @brief
     72        This function is called just after a RenderQueueGroup has been rendered, this function is called by Ogre automatically with the correct parameters.
     73       
     74        in this case we use it to unset the stencil buffer parameters, so the rest of the render queue is unaffected by it.
     75    */
    5976    void RenderQueueListener::renderQueueEnded(Ogre::uint8 queueGroupId, const Ogre::String& invocation, bool& repeatThisInvocation)
    6077    {
Note: See TracChangeset for help on using the changeset viewer.