summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/water.fs
blob: 2ccc924a33153dfd7e58a118b435533a9dce2e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#version 330 core
#extension GL_ARB_shading_language_420pack : enable

include(`materialInterface.glsl')
include(`materialOut.glsl')

uniform sampler2D texture0;
uniform vec3 waves;

void
main()
{
	gPosition = vec4(FragPos, 1);
	gNormal = vec4(Normal, 1);
	gAlbedoSpec = texture(texture0, TexCoords);
	gAlbedoSpec.a *= clamp(-FragPos.z * .0007, .1, 1.0);
}