From ef74ae83db1d3049e4e890df77d25ac6e1f7719f Mon Sep 17 00:00:00 2001 From: drumsetmonkey Date: Thu, 15 Oct 2015 09:07:05 -0400 Subject: Added glew and shader loading --- shader.frag | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shader.frag (limited to 'shader.frag') diff --git a/shader.frag b/shader.frag new file mode 100644 index 0000000..7627a12 --- /dev/null +++ b/shader.frag @@ -0,0 +1,13 @@ +#version 140 + +uniform vec2 lightLocation; +uniform vec3 lightColor; +uniform float screenHeight; + +void main(){ + float distance = length(lightLocation - gl_FragCoord.xy); + float attenuation = 1.0 / distance; + vec4 color = vec4(attenuation, attenuation, attenuation, pow(attenuation, 3)) * vec4(lightColor, 1); + + gl_FragColor = color; +} \ No newline at end of file -- cgit v1.2.3