1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-11 00:39:59 +00:00
OpenMW/files/shaders/terrain_vertex.glsl

44 lines
1.2 KiB
Plaintext
Raw Normal View History

#version 120
varying vec2 uv;
varying float depth;
#define PER_PIXEL_LIGHTING (@normalMap || @forcePPL)
#if !PER_PIXEL_LIGHTING
varying vec4 lighting;
varying vec3 shadowDiffuseLighting;
#else
varying vec4 passColor;
#endif
2016-02-20 18:54:47 +00:00
varying vec3 passViewPos;
2016-03-22 20:00:31 +00:00
varying vec3 passNormal;
2017-09-20 23:25:48 +00:00
varying vec4 shadowSpaceCoords;
#include "lighting.glsl"
void main(void)
{
gl_Position = gl_ModelViewProjectionMatrix * gl_Vertex;
depth = gl_Position.z;
vec4 viewPos = (gl_ModelViewMatrix * gl_Vertex);
gl_ClipVertex = viewPos;
#if !PER_PIXEL_LIGHTING
2016-03-22 20:00:31 +00:00
vec3 viewNormal = normalize((gl_NormalMatrix * gl_Normal).xyz);
lighting = doLighting(viewPos.xyz, viewNormal, gl_Color, shadowDiffuseLighting);
#else
passColor = gl_Color;
#endif
2016-03-22 20:00:31 +00:00
passNormal = gl_Normal.xyz;
2016-02-20 18:54:47 +00:00
passViewPos = viewPos.xyz;
uv = gl_MultiTexCoord0.xy;
2017-09-20 23:25:48 +00:00
// This matrix has the opposite handedness to the others used here, so multiplication must have the vector to the left. Alternatively it could be transposed after construction, but that's extra work for the GPU just to make the code look a tiny bit cleaner.
mat4 eyePlaneMat = mat4(gl_EyePlaneS[1], gl_EyePlaneT[1], gl_EyePlaneR[1], gl_EyePlaneQ[1]);
shadowSpaceCoords = viewPos * eyePlaneMat;
}