#version 450 layout (local_size_x = 32) in; struct Vertex { vec3 position; vec3 color; vec3 normal; }; layout (std140, set = 0, binding = 0) buffer VertexBuffer { Vertex vertices[]; }; void main() { }