#version 330 core out vec4 FragColor; in vec2 uv; uniform vec2 WindowSize; void main() { FragColor = vec4(gl_FragCoord.xy / WindowSize, 0.0, 1.0); }