mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 07:46:12 +03:00
8 lines
101 B
GLSL
8 lines
101 B
GLSL
#version 330 core
|
|
out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(1.0f, 0.5f, 0.2f, 1.0f);
|
|
}
|