shader/font_vtx.glsl@e7ddb52facd3
shader/font_vtx.glsl
Wed, 06 Mar 2024 23:08:03 +0100
- author
- Mike Becker <universe@uap-core.de>
- date
- Wed, 06 Mar 2024 23:08:03 +0100
- changeset 33
- e7ddb52facd3
- parent 16
-
c5dde81b6fb2
- permissions
- -rw-r--r--
add behavior nodes + restructure test program
Also, the test program will now officially be a game of snake.
#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;
}