2025-01-22 16:18:30 +01:00

7 lines
89 B
GLSL

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