diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-16 00:07:48 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-11-16 00:07:48 +0000 |
commit | b7fadd730a78671a0eaf55c36df24c04661ef2c3 (patch) | |
tree | a9d5bce62b3c6e42008d7e0f637665aa97b73764 /gfx/gl/shaders/waterShader.vs | |
parent | Don't write null value for pointers (diff) | |
download | ilt-b7fadd730a78671a0eaf55c36df24c04661ef2c3.tar.bz2 ilt-b7fadd730a78671a0eaf55c36df24c04661ef2c3.tar.xz ilt-b7fadd730a78671a0eaf55c36df24c04661ef2c3.zip |
Swap y,z axis
This was a pain... but all the coords make much more sense now and a lot of mystery negation has disappeared.
Diffstat (limited to 'gfx/gl/shaders/waterShader.vs')
-rw-r--r-- | gfx/gl/shaders/waterShader.vs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gfx/gl/shaders/waterShader.vs b/gfx/gl/shaders/waterShader.vs index 7a641b0..2bcedb4 100644 --- a/gfx/gl/shaders/waterShader.vs +++ b/gfx/gl/shaders/waterShader.vs @@ -14,9 +14,9 @@ void main() { vec3 wpos = vec3( position.x + cos(waves.x), - cos(waves.x + position.x + (position.z / 8)) * .3, - position.z + cos(waves.x * waves.z / 2)); + 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.y; + depth = position.z; } |