Merge
This commit is contained in:
@@ -15,10 +15,6 @@
|
||||
int test_string_cast_scalar()
|
||||
{
|
||||
int Error = 0;
|
||||
|
||||
glm::half A1(1.0);
|
||||
std::string A2 = glm::to_string(A1);
|
||||
Error += A2 != std::string("half(1.0000)") ? 1 : 0;
|
||||
|
||||
float B1(1.0);
|
||||
std::string B2 = glm::to_string(B1);
|
||||
@@ -59,18 +55,6 @@ int test_string_cast_vector()
|
||||
std::string F2 = glm::to_string(F1);
|
||||
Error += F2 != std::string("ivec4(1, 2, 3, 4)") ? 1 : 0;
|
||||
|
||||
glm::hvec2 G1(1, 2);
|
||||
std::string G2 = glm::to_string(G1);
|
||||
Error += G2 != std::string("hvec2(1.0000, 2.0000)") ? 1 : 0;
|
||||
|
||||
glm::hvec3 H1(1, 2, 3);
|
||||
std::string H2 = glm::to_string(H1);
|
||||
Error += H2 != std::string("hvec3(1.0000, 2.0000, 3.0000)") ? 1 : 0;
|
||||
|
||||
glm::hvec4 I1(1, 2, 3, 4);
|
||||
std::string I2 = glm::to_string(I1);
|
||||
Error += I2 != std::string("hvec4(1.0000, 2.0000, 3.0000, 4.0000)") ? 1 : 0;
|
||||
|
||||
glm::dvec2 J1(1, 2);
|
||||
std::string J2 = glm::to_string(J1);
|
||||
Error += J2 != std::string("dvec2(1.000000, 2.000000)") ? 1 : 0;
|
||||
|
||||
Reference in New Issue
Block a user