aboutsummaryrefslogtreecommitdiff
path: root/3rdparty/glm/source/test/ext/ext_scalar_packing.cpp
blob: 77616e3f78dfa0545ac7edb881642dc36530eb55 (plain)
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
#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;
}