aboutsummaryrefslogtreecommitdiffstats
path: root/test.frag
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-01-11 07:38:27 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-01-11 07:38:27 -0500
commitc16827da9b66f42e2bd0d002381bdcdaa2ac8045 (patch)
tree76b0f4531385e4c5279945439ac1099fe6190b02 /test.frag
parenta0597ff41fb4be979f9dfd70ace8be98a737affb (diff)
shit
Diffstat (limited to 'test.frag')
-rw-r--r--test.frag6
1 files changed, 1 insertions, 5 deletions
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);