You need to sign in or sign up before continuing.
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 ...@@ -695,11 +695,12 @@ namespace video
\return Size of render target or screen/window */ \return Size of render target or screen/window */
virtual const core::dimension2d<s32>& getCurrentRenderTargetSize() const = 0; virtual const core::dimension2d<s32>& getCurrentRenderTargetSize() const = 0;
//! Returns current frames per second value. This value is updated //! Returns current frames per second value.
//! approximately every 1.5 seconds and is only intended to provide a /** This value is updated approximately every 1.5 seconds and
//! rough guide to the average frame rate. It is not suitable for use in is only intended to provide a rough guide to the average frame
//! performing timing calculations or framerate independent movement. rate. It is not suitable for use in performing timing
/** \return Approximate amount of frames per second drawn. */ calculations or framerate independent movement.
\return Approximate amount of frames per second drawn. */
virtual s32 getFPS() const = 0; virtual s32 getFPS() const = 0;
//! Returns amount of primitives (mostly triangles) which were drawn in the last frame. //! Returns amount of primitives (mostly triangles) which were drawn in the last frame.
...@@ -854,8 +855,9 @@ namespace video ...@@ -854,8 +855,9 @@ namespace video
\return The created image. \return The created image.
If you no longer need the image, you should call IImage::drop(). If you no longer need the image, you should call IImage::drop().
See IReferenceCounted::drop() for more information. */ See IReferenceCounted::drop() for more information. */
virtual IImage* createImage(IImage* imageToCopy, 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. //! Event handler for resize events. Only used by the engine internally.
/** Used to notify the driver that the window was resized. /** 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