This website requires JavaScript.
Explore
Help
Sign in
fly
/
fgdata
Watch
1
Star
0
Fork
You've already forked fgdata
0
Code
Activity
e77e5bad9c
fgdata
/
Shaders
/
HDR
/
model_shadow.frag
9 lines
104 B
GLSL
Raw
Normal View
History
Unescape
Escape
Initial commit of the HDR pipeline
2021-04-10 09:14:16 +00:00
#version 330 core
HDR: Complete refactoring of shader style and naming See https://wiki.flightgear.org/Shader_Style_Guide.
2023-04-07 06:17:37 +00:00
layout
(
location
=
0
)
out
vec4
fragColor
;
Initial commit of the HDR pipeline
2021-04-10 09:14:16 +00:00
void
main
(
)
{
fragColor
=
vec4
(
1.0
)
;
}
Copy permalink