File: ext_scalar_packing.cpp

package info (click to toggle)
glm 1.0.1%2Bds-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,252 kB
  • sloc: cpp: 41,050; sh: 31; makefile: 23
file content (28 lines) | stat: -rw-r--r-- 302 bytes parent folder | download | duplicates (7)
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;
}