1
0
mirror of synced 2025-02-24 22:15:20 +01:00

7 lines
99 B
GLSL
Raw Normal View History

2018-11-11 20:01:21 -05:00
#version 330 core
out vec4 FragColor;
void main()
{
FragColor = vec4(1.0, 1.0, 0.0, 1.0);
}