shader/font_vtx.glsl@6e5629ea4c5c
shader/font_vtx.glsl
Thu, 21 Mar 2024 20:24:31 +0100
- author
- Mike Becker <universe@uap-core.de>
- date
- Thu, 21 Mar 2024 20:24:31 +0100
- changeset 38
- 6e5629ea4c5c
- parent 16
-
c5dde81b6fb2
- permissions
- -rw-r--r--
implement that nodes inherit the world transform of their parent
#version 400 core
layout(location = 0) in vec2 position;
out vec2 texcoord;
uniform mat4 projection;
uniform mat4 model;
void main(void) {
gl_Position = projection*model*vec4(position, 0.0, 1.0);
texcoord = vec2(model[0].x, model[1].y)*position;
}