veloren/voxygen/shaders/terrain.frag

40 lines
904 B
GLSL
Raw Normal View History

2019-01-14 23:13:58 +00:00
#version 330 core
#include <globals.glsl>
2019-06-05 15:22:06 +00:00
#include <sky.glsl>
2019-01-14 23:13:58 +00:00
in vec3 f_pos;
flat in uint f_pos_norm;
2019-01-14 23:13:58 +00:00
in vec3 f_col;
2019-05-31 20:37:11 +00:00
in float f_light;
2019-01-14 23:13:58 +00:00
layout (std140)
uniform u_locals {
vec3 model_offs;
};
out vec4 tgt_color;
void main() {
// Calculate normal from packed data
vec3 f_norm;
uint norm_axis = (f_pos_norm >> 30) & 0x3u;
float norm_dir = float((f_pos_norm >> 29) & 0x1u) * 2.0 - 1.0;
if (norm_axis == 0u) {
f_norm = vec3(1.0, 0.0, 0.0) * norm_dir;
} else if (norm_axis == 1u) {
f_norm = vec3(0.0, 1.0, 0.0) * norm_dir;
} else {
f_norm = vec3(0.0, 0.0, 1.0) * norm_dir;
}
2019-06-18 23:59:40 +00:00
float light = get_sun_diffuse(f_norm, time_of_day.x) * f_light;
2019-06-05 15:22:06 +00:00
vec3 surf_color = f_col * light;
2019-06-05 18:08:03 +00:00
float fog_level = fog(f_pos.xy, focus_pos.xy);
2019-06-05 15:22:06 +00:00
vec3 fog_color = get_sky_color(normalize(f_pos - cam_pos.xyz), time_of_day.x);
vec3 color = mix(surf_color, fog_color, fog_level);
2019-06-05 15:22:06 +00:00
tgt_color = vec4(color, 1.0);
2019-01-14 23:13:58 +00:00
}