summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/waterShader.vs
blob: bc4b7fc3404fed0d17c88d5d0d6b7ac902c9d6a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#version 330 core

in vec3 position;
in vec2 texCoord;
in vec3 normal;

out vec2 texCoord0;
out float depth;

uniform mat4 viewProjection;
uniform vec3 waves;

void main()
{
	vec3 wpos = vec3(
			position.x + cos(waves.x),
			position.y + cos(waves.x * waves.y / 2),
			cos(waves.x + position.x + (position.y / 8)) * .3);
	gl_Position = viewProjection * vec4(wpos, 1.0);
	texCoord0 = texCoord;
	depth = position.z;
}