swayfx/sway/desktop/shaders/tex.vert
2022-11-10 01:52:04 -05:00

10 lines
185 B
GLSL

uniform mat3 proj;
attribute vec2 pos;
attribute vec2 texcoord;
varying vec2 v_texcoord;
void main() {
gl_Position = vec4(proj * vec3(pos, 1.0), 1.0);
v_texcoord = texcoord;
}