From 5c46e0f0a924989201c6784b0f956bc442f14a7e Mon Sep 17 00:00:00 2001 From: majortom6 Date: Sun, 19 Feb 2017 09:17:35 -0600 Subject: -removed glm library, its in the debian repos -made opengl and sdl folders in includes, moved various *hpps to them --- inc/opengl/shaders/theshader.frag | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 inc/opengl/shaders/theshader.frag (limited to 'inc/opengl/shaders/theshader.frag') diff --git a/inc/opengl/shaders/theshader.frag b/inc/opengl/shaders/theshader.frag new file mode 100644 index 0000000..4f870cb --- /dev/null +++ b/inc/opengl/shaders/theshader.frag @@ -0,0 +1,7 @@ +#version 320 es +in highp vec3 fColor; +out highp vec4 outColor; +void main() +{ + outColor = vec4(fColor, 1.0); +} \ No newline at end of file -- cgit v1.2.3