From f38fcdd644814a9c77d04fa44ae2c8c4a1d03a12 Mon Sep 17 00:00:00 2001 From: CobaltXII Date: Fri, 28 Dec 2018 15:04:37 -0500 Subject: [PATCH] Create block_vertex.glsl --- glsl/block_vertex.glsl | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 glsl/block_vertex.glsl 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