mirror of
https://github.com/g-truc/glm.git
synced 2025-04-07 22:40:17 +00:00
Fixed GTX_io test
This commit is contained in:
parent
3b8a199f1b
commit
fa56944171
2 changed files with 11 additions and 10 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue