Move shader sources to files.

This commit is contained in:
David Allemang
2022-02-13 15:59:47 -05:00
committed by David Allemang
parent 34b1a31704
commit ae10f00127
4 changed files with 69 additions and 34 deletions

View File

@@ -0,0 +1,11 @@
#version 440
layout(location=0) uniform vec4 ucol;
layout(location=0) out vec4 col;
void main() {
float d = 1.0 - gl_FragCoord.z;
d = (d - 0.5) / 0.7 + 0.5;
col = ucol;
col.xyz *= d;
}