From de5a458cb037bb8e1e80c849c5e6525f9413b43a Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sat, 14 Feb 2015 12:09:41 -0500 Subject: Monitor stuff is looking pretty cool! --- shaders/fill.vertex | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 shaders/fill.vertex (limited to 'shaders/fill.vertex') diff --git a/shaders/fill.vertex b/shaders/fill.vertex new file mode 100644 index 0000000..44445fe --- /dev/null +++ b/shaders/fill.vertex @@ -0,0 +1,8 @@ +#version 330 core + +layout(location = 0) in vec3 vertexPosition; + +void main() +{ + gl_Position = vec4(vertexPosition, 1); +} -- cgit 1.4.1