ghostty/shaders/shape.f.glsl
Mitchell Hashimoto 5bbdd75d70 clean up the main App
2022-04-03 20:39:32 -07:00

8 lines
101 B
GLSL

#version 330 core
out vec4 FragColor;
void main()
{
FragColor = vec4(1.0f, 0.5f, 0.2f, 1.0f);
}