mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00

- The renderer now uses buffer memory mapping instead of the deprecated setSubData - It can now render models without texture - It can now use S3TC textures
24 lines
546 B
GLSL
24 lines
546 B
GLSL
#version 450
|
|
|
|
precision mediump float;
|
|
|
|
const vec3 light_pos = normalize(vec3(-1, 1, 1));
|
|
const vec4 sky_color = vec4(1, 1, 1, 1);
|
|
const vec4 ground_color = vec4(0.1, 0.1, 0.1, 1);
|
|
|
|
layout(location = 0) in vec3 frag_normal;
|
|
|
|
layout(location = 0) out vec4 out_color;
|
|
|
|
void main() {
|
|
float cos0 = dot(frag_normal, light_pos);
|
|
float a = 0.5 + 0.5 * cos0;
|
|
float a_back = 1.0 - a;
|
|
|
|
if (gl_FrontFacing) {
|
|
out_color = mix(ground_color, sky_color, a);
|
|
} else {
|
|
out_color = mix(ground_color, sky_color, a_back);
|
|
}
|
|
}
|