This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
Wotos-mpv/res/shaders/glyph_vs.glsl
2023-01-07 12:49:22 +01:00

13 lines
259 B
GLSL

#version 300 es
precision mediump float;
layout (location = 0) in vec4 vertex; // <vec2 pos, vec2 tex>
out vec2 TexCoords;
uniform mat4 transformation;
void main()
{
gl_Position = transformation * vec4(vertex.xy, 0.0, 1.0);
TexCoords = vertex.zw;
}