Merge branch '0.9.2' into 0.9.3

This commit is contained in:
Christophe Riccio
2011-08-26 23:12:27 +01:00
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;
}