mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-05 09:50:41 +01:00
22 lines
416 B
C++
22 lines
416 B
C++
|
#include "testUtils.h"
|
||
|
|
||
|
using namespace irr;
|
||
|
using namespace video;
|
||
|
|
||
|
bool rounding()
|
||
|
{
|
||
|
SColorf colf(0.003922f, 0.007843f, 0.011765f); // test-values by virion which once failed
|
||
|
SColor col = colf.toSColor();
|
||
|
return col.getRed() == 1 && col.getGreen() == 2 && col.getBlue() == 3;
|
||
|
}
|
||
|
|
||
|
//! Test SColor and SColorf
|
||
|
bool color(void)
|
||
|
{
|
||
|
bool ok = true;
|
||
|
|
||
|
ok &= rounding();
|
||
|
|
||
|
return ok;
|
||
|
}
|