diff --git a/glsl/block_vertex.glsl b/glsl/block_vertex.glsl new file mode 100644 index 0000000..402c2c3 --- /dev/null +++ b/glsl/block_vertex.glsl @@ -0,0 +1,8 @@ +#version 330 core + +layout (location = 0) in vec3 vertex_position; + +void main() +{ + gl_Position = vec4(vertex_position, 1.0f); +} \ No newline at end of file