gedeng/Shader/shadow.fs

9 lines
215 B
Forth
Raw Normal View History

#version 430
2021-05-23 20:09:21 +02:00
out vec4 FragColor;
void main()
{
2021-05-21 22:38:40 +02:00
// The mean and the mean squared, which we need to calculate the variance
2021-05-23 20:09:21 +02:00
FragColor = vec4(gl_FragCoord.z, gl_FragCoord.z * gl_FragCoord.z, 0.0, 0.0);
}