forked from Mirrorlandia_minetest/irrlicht
Fix Bug #451 IDynamicMeshBuffer.h missing some _IRR_OVERRIDE_
Thanks @ Maksim Gamarnik for report. https://sourceforge.net/p/irrlicht/bugs/451 git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6160 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
parent
7d679469b1
commit
42b881ee74
@ -26,23 +26,23 @@ namespace scene
|
|||||||
|
|
||||||
//! Get the material of this meshbuffer
|
//! Get the material of this meshbuffer
|
||||||
/** \return Material of this buffer. */
|
/** \return Material of this buffer. */
|
||||||
virtual video::SMaterial& getMaterial() =0;
|
virtual video::SMaterial& getMaterial() _IRR_OVERRIDE_ =0;
|
||||||
|
|
||||||
//! Get the material of this meshbuffer
|
//! Get the material of this meshbuffer
|
||||||
/** \return Material of this buffer. */
|
/** \return Material of this buffer. */
|
||||||
virtual const video::SMaterial& getMaterial() const =0;
|
virtual const video::SMaterial& getMaterial() const _IRR_OVERRIDE_ =0;
|
||||||
|
|
||||||
//! Get the axis aligned bounding box of this meshbuffer.
|
//! Get the axis aligned bounding box of this meshbuffer.
|
||||||
/** \return Axis aligned bounding box of this buffer. */
|
/** \return Axis aligned bounding box of this buffer. */
|
||||||
virtual const core::aabbox3df& getBoundingBox() const =0;
|
virtual const core::aabbox3df& getBoundingBox() const _IRR_OVERRIDE_ =0;
|
||||||
|
|
||||||
//! Set axis aligned bounding box
|
//! Set axis aligned bounding box
|
||||||
/** \param box User defined axis aligned bounding box to use
|
/** \param box User defined axis aligned bounding box to use
|
||||||
for this buffer. */
|
for this buffer. */
|
||||||
virtual void setBoundingBox(const core::aabbox3df& box) =0;
|
virtual void setBoundingBox(const core::aabbox3df& box) _IRR_OVERRIDE_ =0;
|
||||||
|
|
||||||
//! Recalculates the bounding box. Should be called if the mesh changed.
|
//! Recalculates the bounding box. Should be called if the mesh changed.
|
||||||
virtual void recalculateBoundingBox() =0;
|
virtual void recalculateBoundingBox() _IRR_OVERRIDE_ =0;
|
||||||
|
|
||||||
//! Append the vertices and indices to the current buffer
|
//! Append the vertices and indices to the current buffer
|
||||||
/** Only works for compatible vertex types.
|
/** Only works for compatible vertex types.
|
||||||
|
Loading…
Reference in New Issue
Block a user