Commit 9c7e5e02 authored by hybrid's avatar hybrid

Fix documentation

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3977 dfc29bdd-3216-0410-991c-e03cc46cb475
parent 68f2170d
......@@ -26,7 +26,7 @@ public:
//! Returns true if the class might be able to load this file.
/** This decision should be based on the file extension (e.g. ".vrml")
only.
\param fileName Name of the file to test.
\param filename Name of the file to test.
\return True if the extension is a recognised type. */
virtual bool isALoadableFileExtension(const io::path& filename) const = 0;
......
......@@ -979,11 +979,13 @@ namespace video
Please note that the code for the opengl version of the method
is based on free code sent in by Philipp Dortmann, lots of
thanks go to him!
\param triangles Pointer to array of 3d vectors, specifying the
shadow volume.
\param count Amount of triangles in the array.
\param triangles Array of 3d vectors, specifying the shadow
volume.
\param zfail If set to true, zfail method is used, otherwise
zpass. */
zpass.
\param debugDataVisible The debug data that is enabled for this
shadow node
*/
virtual void drawStencilShadowVolume(const core::array<core::vector3df>& triangles, bool zfail=true, u32 debugDataVisible=0) =0;
//! Fills the stencil shadow with color.
......@@ -1091,7 +1093,7 @@ namespace video
//! Returns light data which was previously set by IVideoDriver::addDynamicLight().
/** \param idx Zero based index of the light. Must be 0 or
greater and smaller than IVideoDriver()::getDynamicLightCount.
greater and smaller than IVideoDriver::getDynamicLightCount.
\return Light data. */
virtual const SLight& getDynamicLight(u32 idx) const =0;
......
......@@ -885,9 +885,9 @@ public:
//! Returns a substring
/** \param begin: Start of substring.
\param length: Length of substring.
\param make_lower, copy only lower case */
/** \param begin Start of substring.
\param length Length of substring.
\param make_lower copy only lower case */
string<T> subString(u32 begin, s32 length, bool make_lower = false ) const
{
// if start after string
......
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