mirror of
https://github.com/g-truc/glm.git
synced 2024-11-23 01:14:34 +00:00
Added vec1 operator tests
This commit is contained in:
parent
d722b398c9
commit
8b7d3daa34
@ -12,12 +12,30 @@
|
|||||||
|
|
||||||
int test_operators()
|
int test_operators()
|
||||||
{
|
{
|
||||||
glm::vec4 A(1.0f);
|
int Error(0);
|
||||||
glm::vec4 B(1.0f);
|
|
||||||
|
glm::vec1 A(1.0f);
|
||||||
|
glm::vec1 B(1.0f);
|
||||||
|
{
|
||||||
bool R = A != B;
|
bool R = A != B;
|
||||||
bool S = A == B;
|
bool S = A == B;
|
||||||
|
|
||||||
return (S && !R) ? 0 : 1;
|
Error += (S && !R) ? 0 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
A *= 1.0f;
|
||||||
|
B *= 1.0;
|
||||||
|
A += 1.0f;
|
||||||
|
B += 1.0;
|
||||||
|
|
||||||
|
bool R = A != B;
|
||||||
|
bool S = A == B;
|
||||||
|
|
||||||
|
Error += (S && !R) ? 0 : 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
return Error;
|
||||||
}
|
}
|
||||||
|
|
||||||
int test_operator_increment()
|
int test_operator_increment()
|
||||||
|
Loading…
Reference in New Issue
Block a user