diff options
Diffstat (limited to '3rdparty/glm/source/test/ext/ext_scalar_packing.cpp')
-rw-r--r-- | 3rdparty/glm/source/test/ext/ext_scalar_packing.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/3rdparty/glm/source/test/ext/ext_scalar_packing.cpp b/3rdparty/glm/source/test/ext/ext_scalar_packing.cpp new file mode 100644 index 0000000..77616e3 --- /dev/null +++ b/3rdparty/glm/source/test/ext/ext_scalar_packing.cpp @@ -0,0 +1,28 @@ +#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; +} |