blob: 0bb64a69e478d3d2760d4c964158ff8ffd3126a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
uniform sampler2D sampler;
uniform int numLight;
uniform vec2 lightLocation[10];
uniform vec3 lightColor;
uniform float amb;
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);
color += vec4(attenuation, attenuation, attenuation, 1.0f) * vec4(lightColor, 1.0f);
}
vec2 coords = gl_TexCoord[0].st;
vec4 tex = texture2D(sampler, coords);
color += vec4(amb,amb,amb,1.0f+amb);
gl_FragColor = tex * vec4(color)*tex.a;
}
|