1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 12:42:11 +00:00
OpenMW/files/shaders/water_vertex.glsl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
431 B
Plaintext
Raw Normal View History

#version 120
#include "openmw_vertex.h.glsl"
varying vec4 position;
2020-03-14 12:39:32 +00:00
varying float linearDepth;
#include "shadows_vertex.glsl"
2021-06-01 19:15:25 +00:00
#include "depth.glsl"
void main(void)
{
gl_Position = mw_modelToClip(gl_Vertex);
position = gl_Vertex;
vec4 viewPos = mw_modelToView(gl_Vertex);
linearDepth = getLinearDepth(gl_Position.z, viewPos.z);
2021-06-01 19:15:25 +00:00
setupShadowCoords(viewPos, normalize((gl_NormalMatrix * gl_Normal).xyz));
}