]> git.tdb.fi Git - libs/gl.git/blobdiff - tests/glsl/chained_member_access.glsl
Fix GLSL test cases so they pass the basic tests
[libs/gl.git] / tests / glsl / chained_member_access.glsl
index 2b9c719a0f68fa56b828ed9b840b330e55806f1c..e419ffb77ee0bfe7eef5623996391d7933dee146 100644 (file)
@@ -19,6 +19,8 @@ void main()
        gl_Position = vec4(model.transform.components.position+position.xyz*model.transform.components.scale, 1.0);
 }
 
+// Target API: Vulkan
+
 /* Expected output: vertex
 struct TransformComponents
 {
@@ -29,7 +31,7 @@ struct Transform
 {
        TransformComponents components;
 };
-layout(binding=26) uniform ModelData
+layout(set=0, binding=62) uniform ModelData
 {
        Transform transform;
 } model;