mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
Added string cast test
This commit is contained in:
parent
317a14aadd
commit
b11f0cd3cc
@ -5,5 +5,6 @@ glmCreateTestGTC(gtx_random)
|
||||
glmCreateTestGTC(gtx_rotate_vector)
|
||||
glmCreateTestGTC(gtx_simd_vec4)
|
||||
glmCreateTestGTC(gtx_simd_mat4)
|
||||
glmCreateTestGTC(gtx_string_cast)
|
||||
glmCreateTestGTC(gtx_ulp)
|
||||
glmCreateTestGTC(gtx_vector_angle)
|
||||
|
43
test/gtx/gtx_string_cast.cpp
Normal file
43
test/gtx/gtx_string_cast.cpp
Normal file
@ -0,0 +1,43 @@
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Created : 2011-09-01
|
||||
// Updated : 2011-09-01
|
||||
// Licence : This source is under MIT licence
|
||||
// File : test/gtx/string_cast.cpp
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#include <glm/glm.hpp>
|
||||
#include <glm/gtx/string_cast.hpp>
|
||||
#include <iostream>
|
||||
#include <limits>
|
||||
|
||||
int test_string_cast_vec()
|
||||
{
|
||||
int Error = 0;
|
||||
|
||||
glm::vec2 A1(1, 2);
|
||||
|
||||
std::string A2 = glm::to_string(A1);
|
||||
|
||||
Error += A2 != std::string("fvec2(1.000000, 2.000000)") ? 1 : 0;
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
int test_string_cast_mat()
|
||||
{
|
||||
int Error = 0;
|
||||
|
||||
return Error;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
int Error = 0;
|
||||
Error += test_string_cast_vec();
|
||||
Error += test_string_cast_mat();
|
||||
return Error;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user