Remove DX8 references from tests.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@5069 dfc29bdd-3216-0410-991c-e03cc46cb475
This commit is contained in:
cutealien 2015-03-23 20:44:22 +00:00
parent 538751d85c
commit 77ec2c2bc3
3 changed files with 1 additions and 3 deletions

View File

@ -96,7 +96,6 @@ bool orthoCam(void)
// passed &= testOrthoCam(video::EDT_SOFTWARE);
passed &= testOrthoCam(video::EDT_BURNINGSVIDEO);
passed &= testOrthoCam(video::EDT_DIRECT3D9);
passed &= testOrthoCam(video::EDT_DIRECT3D8);
passed &= testOrthoStencil(video::EDT_OPENGL);
passed &= testOrthoStencil(video::EDT_DIRECT3D9);

View File

@ -70,7 +70,6 @@ bool stencilShadow(void)
// passed &= shadows(video::EDT_SOFTWARE);
// passed &= shadows(video::EDT_BURNINGSVIDEO);
passed &= shadows(video::EDT_DIRECT3D9);
passed &= shadows(video::EDT_DIRECT3D8);
return passed;
}

View File

@ -11,7 +11,7 @@
result &= X(video::E_DRIVER_TYPE(i))
#define TestWithAllHWDrivers(X) \
logTestString("Running test " #X "\n"); \
for (u32 i=video::EDT_DIRECT3D8; i<video::EDT_COUNT; ++i) \
for (u32 i=video::EDT_DIRECT3D9; i<video::EDT_COUNT; ++i) \
result &= X(video::E_DRIVER_TYPE(i))
// replacement for assert which does log the lines instead