Spaces:
Runtime error
Runtime error
File size: 302 Bytes
a93901d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
#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;
}
|