aboutsummaryrefslogtreecommitdiffstats
path: root/Shaders/world.vert
blob: 28fd30708905073b0308a5abeac670c0882df48e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#version 130

//layout(location = 0)in vec3 vertex;
in vec3 vertex;
in vec2 texc;
in float trans;

uniform mat4 projection;
uniform mat4 view;
uniform mat4 model;

out float fragTrans;
out vec2 texCoord;
out vec4 fragCoord;

void main()
{
    fragTrans = trans;
    texCoord = texc;
    fragCoord = vec4(vertex, 1.0f);
    gl_Position = projection * view * model * fragCoord;
}