summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/basicShader.fs
blob: 35d3ec36285cc071b35a50eb0c4244413054dc58 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#version 120

varying vec2 texCoord0;
varying vec3 normal0;

uniform sampler2D sampler;
uniform vec3 lightDirection;

void main()
{
	gl_FragColor = texture2D(sampler, texCoord0);
	gl_FragColor.xyz *= clamp(dot(-lightDirection, normal0), 0.0, 1.0);
}