summaryrefslogtreecommitdiffhomepage
path: root/shaders/lightmap.frag
blob: 91467907a9cebf49d2a507293541531a53a2be1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
precision mediump float;

layout (location = 0) uniform sampler2D sampler;
layout (location = 1) uniform vec3 light_color;
layout (location = 2) uniform vec2 size;
layout (location = 3) uniform vec2 center_fragcoord;
layout (location = 4) uniform vec2 center_clip;
layout (location = 5) uniform float range;
layout (location = 6) uniform uint mode;
layout (location = 7) uniform uint falloff;

out vec4 color;

//layout(origin_upper_left, pixel_center_integer) in vec4 gl_FragCoord;

void main() {
    if (mode == 1)
    {
        float L = range;
        vec2 pos = gl_FragCoord.xy;
        float dist = distance(pos, center_fragcoord);
        float A = 1;
        if (falloff == 0) // linear
            A = max(0, (L - dist) / L);
        else if (falloff == 2) // quadratic
        {
            float tmp = max(0, L - dist);
            A = tmp*tmp / (L*L);
        }
        color = vec4(light_color.rgb, A);
    }
    else if (mode == 2) // blend
    {
        color = texture(sampler, gl_FragCoord.xy * size);
    }
    else if (mode == 0) // shadows
    {
        color = vec4(0, 0, 0, 1);
    }
}