aboutsummaryrefslogtreecommitdiff
path: root/visuals.frag
blob: 8e83f6e4ef09828fb07e995ea19eabd5e83e8bd8 (plain)
1
2
3
4
5
6
7
8
9
#version 330 core

uniform float test;

void main() {
	vec2 uv = gl_FragCoord.xy / ivec2(800, 600);
	gl_FragColor = vec4(uv.xy, test, 1.0);
}