Added GTC_half_float tests

This commit is contained in:
Christophe Riccio
2011-07-11 09:52:03 +01:00
parent 69e4bb9b8e
commit d779fc7892
2 changed files with 107 additions and 0 deletions

View File

@@ -24,12 +24,18 @@ int test_float_precision()
sizeof(glm::mediump_float) <= sizeof(glm::highp_float)) ? 0 : 1;
}
int test_vec2()
{
glm
}
int main()
{
int Error = 0;
Error += test_float_size();
Error += test_float_precision();
Error += test_vec2();
return Error;
}