summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/pointLight.fs
blob: bd32c05d868826f11408bd9b55288fdd64f02872 (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
#version 330 core
#extension GL_ARB_shading_language_420pack : enable

out vec3 FragColor;

layout(binding = 0) uniform sampler2D gPosition;
layout(binding = 1) uniform sampler2D gNormal;
uniform ivec4 viewPort;
uniform vec3 colour;
uniform float kq;
in vec4 geo_centre;

void
main()
{
	const vec2 texCoord = gl_FragCoord.xy / viewPort.zw;
	const vec3 position = texture(gPosition, texCoord).xyz;
	const vec3 lightv = position - geo_centre.xyz;
	const float lightDist = length(lightv);
	if (lightDist > geo_centre.w) {
		discard;
	}
	const vec3 normal = texture(gNormal, texCoord).xyz;
	const vec3 lightDirection = normalize(lightv);
	const float normalDot = dot(-lightDirection, normal);
	if (normalDot < 0) {
		discard;
	}
	FragColor = (colour * normalDot) / (1 + (kq * pow(lightDist, 2)));
}