mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 07:46:12 +03:00
9 lines
128 B
GLSL
9 lines
128 B
GLSL
#version 330 core
|
|
|
|
/// The background color for this cell.
|
|
flat in vec4 bg_color;
|
|
|
|
void main() {
|
|
gl_FragColor = bg_color;
|
|
}
|