aboutsummaryrefslogtreecommitdiff
path: root/spirv.frag
blob: f417dc11279f4fcc70caac56431aabe3e2257c0f (plain)
1
2
3
4
5
6
7
8
#version 330 core
uniform float test;

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