mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-07-14 07:46:12 +03:00
10 lines
141 B
GLSL
10 lines
141 B
GLSL
#version 120
|
|
|
|
attribute vec4 coord;
|
|
varying vec2 texcoord;
|
|
|
|
void main(void) {
|
|
gl_Position = vec4(coord.xy, 0, 1);
|
|
texcoord = coord.zw;
|
|
}
|