shader/font_vtx.glsl@4ccf4703999e
shader/font_vtx.glsl
Sun, 21 Jan 2024 13:58:23 +0100
- author
- Mike Becker <universe@uap-core.de>
- date
- Sun, 21 Jan 2024 13:58:23 +0100
- changeset 27
- 4ccf4703999e
- parent 16
-
c5dde81b6fb2
- permissions
- -rw-r--r--
improve implementation of scene graph tree
#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;
}