mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-05 23:51:29 +02:00
10 lines
174 B
GLSL
10 lines
174 B
GLSL
#version GLSL_VERSION
|
|
|
|
layout(location=3) in vec4 src;
|
|
out vec2 texcoord;
|
|
|
|
void main() {
|
|
texcoord = vec2(src[0], src[1]);
|
|
gl_Position = vec4(src[2], src[3], 0, 1);
|
|
}
|