Added GLSL 4.20 pack/unpackHalf16x2 functions

This commit is contained in:
Christophe Riccio
2011-09-13 14:44:38 +01:00
parent f4800e6fc2
commit bf76e0af09
3 changed files with 78 additions and 36 deletions

View File

@@ -9,10 +9,19 @@
#include <glm/glm.hpp>
int main()
int test_packHalf2x16()
{
int Failed = 0;
return Failed;
int Error = 0;
return Error;
}
int main()
{
int Error = 0;
Error += test_packHalf2x16();
return Error;
}