Browse Source

Fixed GTX_io test

Christophe Riccio 12 years ago
parent
commit
fa56944171
2 changed files with 12 additions and 11 deletions
  1. 1 0
      readme.txt
  2. 11 11
      test/gtx/gtx_io.cpp

+ 1 - 0
readme.txt

@@ -69,6 +69,7 @@ GLM 0.9.5.0: 2013-XX-XX
 - Added C++11 initializer lists
 - Fixed umulExtended and imulExtended implementations for vector types (#76)
 - Fixed CUDA coverage for GTC extensions
+- Added GTX_io extension
 
 ================================================================================
 GLM 0.9.4.6: 2013-09-20

+ 11 - 11
test/gtx/gtx_io.cpp

@@ -125,16 +125,16 @@ int test_io_mat(OS& os)
 int main()
 {
 	int Error(0);
-  
-  Error += test_io_vec<float,glm::highp>  (std::cout);
-  Error += test_io_vec<float,glm::highp>  (std::wcout);
-  Error += test_io_vec<int,  glm::mediump>(std::cout);
-  Error += test_io_vec<int,  glm::mediump>(std::wcout);
-  Error += test_io_vec<uint, glm::lowp>   (std::cout);
-  Error += test_io_vec<uint, glm::lowp>   (std::wcout);
-
-  Error += test_io_mat<float,glm::highp>  (std::cout);
-  Error += test_io_mat<float,glm::lowp>   (std::wcout);
-  
+
+	Error += test_io_vec<float, glm::highp>(std::cout);
+	Error += test_io_vec<float, glm::highp>(std::wcout);
+	Error += test_io_vec<int, glm::mediump>(std::cout);
+	Error += test_io_vec<int, glm::mediump>(std::wcout);
+	Error += test_io_vec<glm::uint, glm::lowp>(std::cout);
+	Error += test_io_vec<glm::uint, glm::lowp>(std::wcout);
+
+	Error += test_io_mat<float, glm::highp>(std::cout);
+	Error += test_io_mat<float, glm::lowp>(std::wcout);
+
 	return Error;
 }