]> git.tdb.fi Git - libs/gl.git/blobdiff - tests/glsl/parameter_composite_access.glsl
Fix GLSL test cases so they pass the basic tests
[libs/gl.git] / tests / glsl / parameter_composite_access.glsl
index 718fffd38a6063fa9059668d875ad01303639fbb..13e524dd9d892de853415e78ccfaf67f7b181566 100644 (file)
@@ -27,6 +27,8 @@ void main()
        frag_color = get_color(normal);
 }
 
+// Target API: Vulkan
+
 /* Expected output: vertex
 layout(location=0) in vec4 position;
 layout(location=1) in vec3 normal;
@@ -39,7 +41,7 @@ void main()
 */
 
 /* Expected output: fragment
-layout(binding=23) uniform Colors
+layout(set=0, binding=23) uniform Colors
 {
        vec4 top_color;
        vec4 bottom_color;