From 469a84c10ba60fba4a513c1b1a0eea600cd7b22f Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Wed, 10 May 2017 18:44:51 +0500 Subject: 2017-05-10 --- graphics/simpleVS.vs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 graphics/simpleVS.vs (limited to 'graphics/simpleVS.vs') diff --git a/graphics/simpleVS.vs b/graphics/simpleVS.vs new file mode 100644 index 0000000..deae931 --- /dev/null +++ b/graphics/simpleVS.vs @@ -0,0 +1,8 @@ +#version 330 core + +layout (location = 0) in vec3 position; + +void main() +{ + gl_Position = vec4(position.x, position.y, position.z, 1.0); +} \ No newline at end of file -- cgit v1.2.3