Fix some doxygen comments while about everything has to be rebuilt anyway.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@11018 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
wardje 2012-03-25 16:41:21 +00:00
parent a40462594c
commit a5028ddd4f
3 changed files with 10 additions and 6 deletions

View File

@ -27,6 +27,9 @@ namespace irr
}
using namespace irr;
/** \brief Handles post processing, eg motion blur
* \ingroup graphics
*/
class PostProcessing : public video::IShaderConstantSetCallBack
{
private:

View File

@ -41,11 +41,11 @@ class Swatter : public NoCopy, public AttachmentPlugin
{
private:
/** State of the animation: the swatter is successively:
- aiming (default state) => it's turning to the nearest target
- going down to the target
- going up from the target
*/
/** State of the animation, the swatter is successively:
* - aiming (default state) => it's turning to the nearest target
* - going down to the target
* - going up from the target
*/
enum {SWATTER_AIMING, SWATTER_TO_TARGET, SWATTER_FROM_TARGET}
m_animation_phase;

View File

@ -75,7 +75,8 @@ void Moveable::updateGraphics(float dt, const Vec3& offset_xyz,
} // updateGraphics
//-----------------------------------------------------------------------------
// The reset position must be set before calling reset
/** The reset position must be set before calling reset
*/
void Moveable::reset()
{
if(m_body)