ES-DE/test/ext/ext_scalar_packing.cpp
Leon Styhre 0116f4b65d Squashed 'external/glm/' content from commit bf71a8349
git-subtree-dir: external/glm
git-subtree-split: bf71a834948186f4097caa076cd2663c69a10e1e
2021-08-13 15:26:10 +02:00

29 lines
302 B
C++

#include <glm/ext/scalar_packing.hpp>
#include <glm/ext/scalar_relational.hpp>
int test_packUnorm()
{
int Error = 0;
return Error;
}
int test_packSnorm()
{
int Error = 0;
return Error;
}
int main()
{
int Error = 0;
Error += test_packUnorm();
Error += test_packSnorm();
return Error;
}