aboutsummaryrefslogtreecommitdiffstats
path: root/shaders/world.vert
blob: 0d5e65e1e9cbe991066c20e7c9bd8843f7308ab2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
attribute vec3 coord2d;
attribute vec2 tex_coord;

uniform vec4 tex_color;
uniform mat4 ortho;
uniform mat4 transform;

varying vec2 texCoord;
varying vec4 color;
varying vec4 fragCoord;

void main(){
	color = tex_color;
    texCoord = tex_coord;
    fragCoord = vec4(coord2d.xyz, 1.0);
	gl_Position = ortho * transform * fragCoord;
}