summaryrefslogtreecommitdiff
path: root/gfx/gl/shaders/landmassShader.vs
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-02-20 00:17:58 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2021-02-20 00:17:58 +0000
commit2bc4bcebc93e7211dfb84303888635f888ba8018 (patch)
tree3a349beadc079c544001f3a65ac0e26fe494f8e5 /gfx/gl/shaders/landmassShader.vs
parentCreate smoother terrain (diff)
downloadilt-2bc4bcebc93e7211dfb84303888635f888ba8018.tar.bz2
ilt-2bc4bcebc93e7211dfb84303888635f888ba8018.tar.xz
ilt-2bc4bcebc93e7211dfb84303888635f888ba8018.zip
Custom land and water shaders
Create sandy beaches, snow topped mountains and grassy hills with a single texture, coloured according to land height by a custom shader. Also use the land mass mesh with a new water texture and a custom shader to create rather nice looking water effect with depth, waves and motion.
Diffstat (limited to 'gfx/gl/shaders/landmassShader.vs')
-rw-r--r--gfx/gl/shaders/landmassShader.vs21
1 files changed, 21 insertions, 0 deletions
diff --git a/gfx/gl/shaders/landmassShader.vs b/gfx/gl/shaders/landmassShader.vs
new file mode 100644
index 0000000..72c9060
--- /dev/null
+++ b/gfx/gl/shaders/landmassShader.vs
@@ -0,0 +1,21 @@
+#version 130
+
+in vec3 position;
+in vec2 texCoord;
+in vec3 normal;
+
+out vec2 texCoord0;
+out vec3 normal0;
+out float height;
+
+uniform mat4 viewProjection;
+uniform mat4 model;
+uniform vec3 waves;
+
+void main()
+{
+ gl_Position = viewProjection * model * vec4(position, 1.0);
+ texCoord0 = texCoord;
+ normal0 = normal;
+ height = position.y;
+}