1layout(set=0, binding=0) readonly buffer storageBuffer 2{ 3 float2[] vertices; 4}; 5 6void main() { 7 sk_Position = float4(vertices[sk_VertexID], 1.0, 1.0); 8} 9