shader/sprite_vtx.glsl

Wed, 10 Apr 2024 19:35:14 +0200

author
Mike Becker <universe@uap-core.de>
date
Wed, 10 Apr 2024 19:35:14 +0200
changeset 56
428fbb8355eb
parent 42
cc912686f663
permissions
-rw-r--r--

add convenience function to add nodes to the UI of the active window

universe@15 1 #version 400 core
universe@15 2
universe@16 3 layout(location = 0) in vec2 position;
universe@15 4 out vec2 texcoord;
universe@15 5
universe@15 6 uniform mat4 projection;
universe@15 7 uniform mat4 model;
universe@41 8 uniform float depth;
universe@15 9
universe@15 10 void main(void) {
universe@41 11 vec4 pos = projection*model*vec4(position.x, position.y, 0, 1.0);
universe@41 12 // apply depth
universe@42 13 pos.z = depth / -1024.0;
universe@41 14 gl_Position = pos;
universe@16 15 texcoord = vec2(model[0].x, model[1].y)*position;
universe@15 16 }

mercurial