ext_scalar_packing.cpp 302 B

12345678910111213141516171819202122232425262728
  1. #include <glm/ext/scalar_packing.hpp>
  2. #include <glm/ext/scalar_relational.hpp>
  3. int test_packUnorm()
  4. {
  5. int Error = 0;
  6. return Error;
  7. }
  8. int test_packSnorm()
  9. {
  10. int Error = 0;
  11. return Error;
  12. }
  13. int main()
  14. {
  15. int Error = 0;
  16. Error += test_packUnorm();
  17. Error += test_packSnorm();
  18. return Error;
  19. }