16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-22 11:39:19 +02:00
This commit is contained in:
2026-05-24 21:48:05 +02:00
parent 5b51188dfe
commit 2c599cb419
46 changed files with 2034 additions and 85 deletions

24
shaders/ecs_line.frag Normal file
View File

@@ -0,0 +1,24 @@
in vec3 f_color;
in vec4 f_pos;
#include <common>
#include <apply_fog.glsl>
#include <tonemapping.glsl>
layout(location = 0) out vec4 out_color;
#if MOTIONBLUR_ENABLED
layout(location = 1) out vec4 out_motion;
#endif
void main()
{
vec3 col = f_color;
#if POSTFX_ENABLED
out_color = vec4(apply_fog(col), 1.0);
#else
out_color = tonemap(vec4(apply_fog(col), 1.0));
#endif
#if MOTIONBLUR_ENABLED
out_motion = vec4(0.0);
#endif
}