SPIR-V: Move from Version .99 Rev 31 to Version 1.0, Rev 2.

This commit is contained in:
John Kessenich
2015-11-15 21:33:39 -07:00
parent 1c77f3a8d2
commit 55e7d11ce8
117 changed files with 6740 additions and 5997 deletions

View File

@@ -1,6 +1,6 @@
#version 130
uniform sampler2D sampler;
uniform sampler2D samp2D;
varying mediump vec2 coord;
varying vec4 u, w;
@@ -28,9 +28,9 @@ void main()
b = s1[3](s1(17, 17.0), s1(int(w.x), w.y), s1(int(w.z), w.w));
if (foo2a == foo2b)
v = texture2D(sampler, coord);
v = texture(samp2D, coord);
else
v = texture2D(sampler, 2.0*coord);
v = texture(samp2D, 2.0*coord);
if (u == v)
v *= 3.0;