gtc-integer-matrix.cpp 745 B

1234567891011121314151617181920212223242526272829
  1. ///////////////////////////////////////////////////////////////////////////////////////////////////
  2. // OpenGL Mathematics Copyright (c) 2005 - 2011 G-Truc Creation (www.g-truc.net)
  3. ///////////////////////////////////////////////////////////////////////////////////////////////////
  4. // Created : 2010-09-16
  5. // Updated : 2010-09-16
  6. // Licence : This source is under MIT licence
  7. // File : test/gtx/simd-mat4.cpp
  8. ///////////////////////////////////////////////////////////////////////////////////////////////////
  9. #define GLM_MESSAGES
  10. #include <glm/glm.hpp>
  11. #include <glm/gtc/matrix_integer.hpp>
  12. int test_int_matrix()
  13. {
  14. {
  15. glm::mediump_uint A(0);
  16. }
  17. return 0;
  18. }
  19. int main()
  20. {
  21. int Failed = 0;
  22. Failed += test_int_matrix();
  23. return Failed;
  24. }