Fix comments

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@3754 dfc29bdd-3216-0410-991c-e03cc46cb475
master
hybrid 2011-05-25 22:29:53 +00:00
parent d542ddaa7a
commit be4fae0335
1 changed files with 2 additions and 4 deletions

View File

@ -5,8 +5,7 @@
using namespace irr;
// Tests screenshots.
/** At the moment, this just verifies that the last frame of the animation produces the expected bitmap. */
// Tests screenshots features
bool testShots(video::E_DRIVER_TYPE type)
{
IrrlichtDevice *device = createDevice(type, core::dimension2d<u32>(160, 120), 32);
@ -31,7 +30,6 @@ bool testShots(video::E_DRIVER_TYPE type)
(void)smgr->addCameraSceneNode();
// Just jump to the last frame since that's all we're interested in.
node->setMD2Animation(scene::EMAT_DEATH_FALLBACK);
node->setCurrentFrame((f32)(node->getEndFrame()));
node->setAnimationSpeed(0);
@ -60,4 +58,4 @@ bool screenshot()
testShots(video::EDT_OPENGL);
testShots(video::EDT_DIRECT3D9);
return true;
}
}