shader/font_vtx.glsl@fceda550ebcb
shader/font_vtx.glsl
Thu, 22 Feb 2024 22:34:50 +0100
- author
- Mike Becker <universe@uap-core.de>
- date
- Thu, 22 Feb 2024 22:34:50 +0100
- changeset 30
- fceda550ebcb
- parent 16
-
c5dde81b6fb2
- permissions
- -rw-r--r--
apply new CxTreeIterator from ucx 3.1 preview
#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;
}