Implement __VERSION__ macro, make ftransform() non-ES only, add more tests.

git-svn-id: https://cvs.khronos.org/svn/repos/ogl/trunk/ecosystem/public/sdk/tools/glslang@22000 e7fa87d3-cd2b-0410-9028-fcbf551c1848
This commit is contained in:
John Kessenich
2013-06-13 23:56:04 +00:00
parent fb7044a9a8
commit f78fff94e9
7 changed files with 20 additions and 4 deletions

View File

@@ -79,6 +79,7 @@ void main()
f >> i;
m4 >> i;
a >> u;
iv3 >> iv4;
i & u;
u ^ uv3;
@@ -86,6 +87,7 @@ void main()
u & f;
m2 | m2;
s ^ s;
(f = f) = f;
// These are all okay:
f * v4;
@@ -118,6 +120,7 @@ void main()
uv3 <<= i;
i >> i;
u << u;
iv3 >> iv3;
i & i;
u | u;