diff options
Diffstat (limited to 'gfx/gl/shaders/waterShader.vs')
-rw-r--r-- | gfx/gl/shaders/waterShader.vs | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/gfx/gl/shaders/waterShader.vs b/gfx/gl/shaders/waterShader.vs deleted file mode 100644 index a21b49f..0000000 --- a/gfx/gl/shaders/waterShader.vs +++ /dev/null @@ -1,20 +0,0 @@ -#version 330 core - -include(`meshIn.glsl') -include(`materialInterface.glsl') - -uniform mat4 viewProjection; -uniform vec3 waves; - -void -main() -{ - vec4 wpos = vec4(position.x + cos(waves.x), position.y + cos(waves.x * waves.y / 2), - cos(waves.x + position.x + (position.y / 8)) * .3, 1.0); - - FragPos = vec3(wpos.xy, position.z); - TexCoords = texCoord; - Normal = normal; - - gl_Position = viewProjection * wpos; -} |