#version 330 core #define WIDTH 800 #define HEIGHT 600 void main() { gl_FragColor = vec4(gl_FragCoord.x / WIDTH, gl_FragCoord.y / HEIGHT, 0, 1); }