Commit 03731683 authored by hybrid's avatar hybrid

Fix comments for doxygen.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1652 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 24c7dd09
......@@ -695,11 +695,12 @@ namespace video
\return Size of render target or screen/window */
virtual const core::dimension2d<s32>& getCurrentRenderTargetSize() const = 0;
//! Returns current frames per second value. This value is updated
//! approximately every 1.5 seconds and is only intended to provide a
//! rough guide to the average frame rate. It is not suitable for use in
//! performing timing calculations or framerate independent movement.
/** \return Approximate amount of frames per second drawn. */
//! Returns current frames per second value.
/** This value is updated approximately every 1.5 seconds and
is only intended to provide a rough guide to the average frame
rate. It is not suitable for use in performing timing
calculations or framerate independent movement.
\return Approximate amount of frames per second drawn. */
virtual s32 getFPS() const = 0;
//! Returns amount of primitives (mostly triangles) which were drawn in the last frame.
......@@ -855,7 +856,8 @@ namespace video
If you no longer need the image, you should call IImage::drop().
See IReferenceCounted::drop() for more information. */
virtual IImage* createImage(IImage* imageToCopy,
const core::position2d<s32>& pos, const core::dimension2d<s32>& size) =0;
const core::position2d<s32>& pos,
const core::dimension2d<s32>& size) =0;
//! Event handler for resize events. Only used by the engine internally.
/** Used to notify the driver that the window was resized.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment