1
0
Fork 0
fgdata/Shaders/HDR/stars.frag
Fernando García Liñán 746532f098 HDR: Render the Moon, stars and planets
Moon textures have been adapted from the following webpage:

https://svs.gsfc.nasa.gov/4720
NASA's Scientific Visualization Studio
2023-11-06 14:56:45 +01:00

14 lines
213 B
GLSL

#version 330 core
layout(location = 0) out vec4 fragColor;
in VS_OUT {
vec4 color;
} fs_in;
uniform float max_radiance;
void main()
{
fragColor = vec4(fs_in.color.rgb * max_radiance, fs_in.color.a);
}