demos: Add location to smoketest varyings
authorJon Ashburn <jon@lunarg.com>
Tue, 3 May 2016 15:45:42 +0000 (09:45 -0600)
committerJon Ashburn <jon@lunarg.com>
Tue, 3 May 2016 15:58:33 +0000 (09:58 -0600)
Change-Id: I6fb9d1d0ffd8b51988bc0768afedc0e9fb510cc5

demos/smoke/Smoke.frag
demos/smoke/Smoke.push_constant.vert
demos/smoke/Smoke.vert

index e07a46f..82bee59 100644 (file)
@@ -2,7 +2,7 @@
 
 precision highp float;
 
-in vec3 color;
+layout(location = 0) in vec3 color;
 
 layout(location = 0) out vec4 fragcolor;
 
index e2357fb..4f53bd7 100644 (file)
@@ -10,7 +10,7 @@ layout(std140, push_constant) uniform param_block {
        mat4 view_projection;
 } params;
 
-out vec3 color;
+layout(location = 0) out vec3 color;
 
 void main()
 {
index 60bda60..8a1691d 100644 (file)
@@ -10,7 +10,7 @@ layout(std140, set = 0, binding = 0) readonly buffer param_block {
        mat4 view_projection;
 } params;
 
-out vec3 color;
+layout(location = 0) out vec3 color;
 
 void main()
 {