mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 07:46:12 +03:00
10 lines
169 B
GLSL
10 lines
169 B
GLSL
#version 120
|
|
|
|
varying vec2 texcoord;
|
|
uniform sampler2D tex;
|
|
uniform vec4 color;
|
|
|
|
void main(void) {
|
|
gl_FragColor = vec4(1, 1, 1, texture2D(tex, texcoord).r) * color;
|
|
}
|