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/blit.vertex | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shaders/blit.vertex (limited to 'shaders/blit.vertex') diff --git a/shaders/blit.vertex b/shaders/blit.vertex new file mode 100644 index 0000000..4a9aa6a --- /dev/null +++ b/shaders/blit.vertex @@ -0,0 +1,13 @@ +#version 330 core + +layout(location = 0) in vec2 vertexPosition; +layout(location = 1) in vec2 texcoordPosition; + +out vec2 UV; + +void main() +{ + gl_Position = vec4(vertexPosition, 0.0f, 1.0f); + + UV = texcoordPosition; +} -- cgit 1.4.1