2016-12-24 15:03:37 +00:00
|
|
|
#ifdef GL_ES
|
|
|
|
// Set default precision to medium
|
|
|
|
precision mediump int;
|
|
|
|
precision mediump float;
|
|
|
|
#endif
|
|
|
|
|
2017-01-17 10:32:06 +00:00
|
|
|
uniform mat3 n_matrix;
|
2016-12-24 15:03:37 +00:00
|
|
|
uniform sampler2D texture;
|
|
|
|
|
2017-01-17 10:32:06 +00:00
|
|
|
uniform struct Light {
|
|
|
|
vec3 position;
|
|
|
|
vec3 intensities;
|
|
|
|
} light;
|
|
|
|
|
2017-01-15 14:51:12 +00:00
|
|
|
uniform bool b_transparent;
|
|
|
|
|
2016-12-24 15:03:37 +00:00
|
|
|
varying vec2 v_texcoord;
|
2017-01-17 10:37:07 +00:00
|
|
|
varying vec3 v_position;
|
2017-01-17 10:32:06 +00:00
|
|
|
varying vec3 v_normal;
|
2016-12-24 15:03:37 +00:00
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
2017-01-17 10:32:06 +00:00
|
|
|
|
|
|
|
vec3 normal = normalize(n_matrix * v_normal);
|
|
|
|
|
|
|
|
vec3 surfaceToLight = light.position - v_position;
|
|
|
|
|
|
|
|
float brightness = dot(normal, surfaceToLight) / (length(surfaceToLight) * length(normal));
|
|
|
|
brightness = clamp(brightness, 0, 1);
|
|
|
|
|
2016-12-31 11:31:38 +00:00
|
|
|
// Set fragment color from texture
|
2017-01-17 10:32:06 +00:00
|
|
|
vec4 surfaceColor = vec4(texture2D(texture, v_texcoord));
|
2017-01-14 16:20:50 +00:00
|
|
|
|
2017-01-15 14:51:12 +00:00
|
|
|
if(!b_transparent)
|
|
|
|
{
|
2017-01-17 10:32:06 +00:00
|
|
|
surfaceColor.a = 1.0f;
|
2017-01-15 14:51:12 +00:00
|
|
|
}
|
|
|
|
|
2017-01-17 10:32:06 +00:00
|
|
|
gl_FragColor = vec4(brightness * light.intensities * surfaceColor.rgb, surfaceColor.a);
|
2016-12-24 15:03:37 +00:00
|
|
|
}
|