From c16827da9b66f42e2bd0d002381bdcdaa2ac8045 Mon Sep 17 00:00:00 2001 From: drumsetmonkey Date: Mon, 11 Jan 2016 07:38:27 -0500 Subject: shit --- test.frag | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'test.frag') diff --git a/test.frag b/test.frag index 3b11ebb..0bb64a6 100644 --- a/test.frag +++ b/test.frag @@ -4,19 +4,15 @@ uniform int numLight; uniform vec2 lightLocation[10]; uniform vec3 lightColor; uniform float amb; -// uniform float lightStrength; -//uniform float screenHeight; + void main(){ vec4 color = vec4(0.0f,0.0f,0.0f,0.0f); for(int i = 0; i < numLight; i++){ vec2 loc = lightLocation[i]; - //if(loc.x == 0.0f) continue; float dist = length(loc - gl_FragCoord.xy); float attenuation=1.0/(1.0+0.01*dist+0.00000000001*dist*dist); - //vec4 color = vec4(1.0f,1.0f,1.0f,1.0f); color += vec4(attenuation, attenuation, attenuation, 1.0f) * vec4(lightColor, 1.0f); - //color = color + vec4((vec3(lightColor.r + amb, lightColor.g + amb, lightColor.b + amb)*0.25f),1.0f); } vec2 coords = gl_TexCoord[0].st; vec4 tex = texture2D(sampler, coords); -- cgit v1.2.3