]> git.tdb.fi Git - libs/gl.git/blobdiff - tests/glsl/nested_member_access.glsl
Fix GLSL test cases so they pass the basic tests
[libs/gl.git] / tests / glsl / nested_member_access.glsl
index 60b3a492ebca98d44a320e98022c4fd181a448e4..3f7034cef0951d528ae24d2cb4bc76da8fb90dcb 100644 (file)
@@ -21,6 +21,8 @@ void main()
        frag_color = vec4(light_color[light_index], 1.0);
 }
 
+// Target API: Vulkan
+
 /* Expected output: vertex
 layout(location=0) in vec4 position;
 void main()
@@ -30,11 +32,11 @@ void main()
 */
 
 /* Expected output: fragment
-layout(binding=5) uniform Lighting
+layout(set=0, binding=65) uniform Lighting
 {
        vec3 light_color[4];
 };
-layout(binding=80) uniform Params
+layout(set=0, binding=56) uniform Params
 {
        int light_index;
 };