1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-02-25 17:09:40 +00:00
openmw-tes3mp/files/shaders/water_vertex.glsl

30 lines
757 B
Text
Raw Normal View History

#version 120
varying vec3 screenCoordsPassthrough;
varying vec4 position;
2020-03-14 12:39:32 +00:00
varying float linearDepth;
varying vec3 passViewPos;
#include "shadows_vertex.glsl"
void main(void)
{
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
vec4 viewPos = gl_ModelViewMatrix * gl_Vertex;
passViewPos = viewPos.xyz;
mat4 scalemat = mat4(0.5, 0.0, 0.0, 0.0,
0.0, -0.5, 0.0, 0.0,
0.0, 0.0, 0.5, 0.0,
0.5, 0.5, 0.5, 1.0);
vec4 texcoordProj = ((scalemat) * ( gl_Position));
2019-08-30 19:01:03 +00:00
screenCoordsPassthrough = texcoordProj.xyw;
position = gl_Vertex;
2020-03-14 12:39:32 +00:00
linearDepth = gl_Position.z;
setupShadowCoords(viewPos, normalize((gl_NormalMatrix * gl_Normal).xyz));
}