ghostty/shaders/cell.f.glsl
Mitchell Hashimoto 544286509f grid render a few cells
2022-04-14 17:14:49 -07:00

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;
}