You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
221 B

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