mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 03:10:09 +00:00
10 lines
189 B
Plaintext
10 lines
189 B
Plaintext
|
#version 330
|
||
|
|
||
|
out vec4 outputColor;
|
||
|
|
||
|
void main() {
|
||
|
float lerpVal = gl_FragCoord.y / 500.0f;
|
||
|
|
||
|
outputColor = mix(vec4(1.0f, 0.85f, 0.35f, 1.0f), vec4(0.2f, 0.2f, 0.2f, 1.0f), lerpVal);
|
||
|
}
|