aboutsummaryrefslogtreecommitdiffstats
path: root/shaders/world.vert
blob: 1bedfd3feb3b631419702dfc5190abe54c97b550 (plain)
1
2
3
4
5
6
7
8
9
10
11
attribute vec3 coord2d;
attribute vec2 tex_coord;

uniform mat4 ortho;

varying vec2 texCoord;

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