2025-01-22 17:22:38 +01:00

7 lines
89 B
GLSL

#version 450
out vec4 FragColor;
void main() {
FragColor = vec4(1.0, 0.0, 0.0, 1.0);
}