m2-ar-projet/shaders/main.frag

17 lines
375 B
GLSL
Raw Normal View History

2021-01-02 17:45:42 +01:00
varying vec3 norm;
varying vec2 uv;
varying vec3 frag_pos;
2020-12-28 17:36:45 +01:00
uniform sampler2D tex;
void main() {
vec3 light_col = vec3(1, .964, .783);
vec3 ambient = light_col * .2;
vec3 light_dir = normalize(vec3(5, 10, -8));
float diff = max(dot(normalize(norm), light_dir), 0.0);
vec3 diffuse = diff * light_col;
2021-01-02 17:45:42 +01:00
gl_FragColor = texture2D(tex, uv) * vec4(ambient + diffuse, 1);
2020-12-28 17:36:45 +01:00
}