diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-01-12 07:37:19 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-01-12 07:37:19 -0500 |
commit | e08983ddccf0beee79e63bdf3ef1b839ea947c7a (patch) | |
tree | f6906803251ae27bd17bcc11685a6d7bde88cfbb /test.frag | |
parent | 6bf27552a564297cd8aaf1e3c24d9320438bdcc5 (diff) |
Light posts
Diffstat (limited to 'test.frag')
-rw-r--r-- | test.frag | 22 |
1 files changed, 18 insertions, 4 deletions
@@ -1,17 +1,22 @@ -#version 130
+#version 120
uniform sampler2D sampler;
uniform int numLight;
-uniform vec2 lightLocation[255];
+uniform vec2 lightLocation[1024];
uniform vec3 lightColor;
uniform float amb;
+float b = .0005;
+float minLight = .05;
+float radius = sqrt(1.0 / (b * minLight));
+
void main(){
vec4 color = vec4(0.0f,0.0f,0.0f,0.0f);
for(int i = 0; i < numLight; i++){
vec2 loc = lightLocation[i];
float dist = length(loc - gl_FragCoord.xy);
- float attenuation=1.0/(1.0+0.01*dist+0.00000000001*dist*dist);
+ //float attenuation=1.0/(1.0+0.01*dist+0.00000000001*dist*dist);
+ float attenuation = clamp(1.0 - dist*dist/(radius*radius), 0.0, 1.0); attenuation *= attenuation;
color += vec4(attenuation, attenuation, attenuation, 1.0f) * vec4(lightColor, 1.0f);
}
@@ -20,4 +25,13 @@ void main(){ color += vec4(amb,amb,amb,1.0f+amb);
gl_FragColor = tex * vec4(color)*tex.a;
-}
\ No newline at end of file +}
+
+/*b values
+ .002 10
+ .008 50
+ .0005 200
+ .00008 500
+ .00002 1000
+ .00005 2000
+*/
\ No newline at end of file |