2016-02-19 00:30:15 +00:00
|
|
|
#version 120
|
|
|
|
|
2021-03-15 04:42:34 +00:00
|
|
|
#if @useUBO
|
|
|
|
#extension GL_ARB_uniform_buffer_object : require
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if @useGPUShader4
|
|
|
|
#extension GL_EXT_gpu_shader4: require
|
|
|
|
#endif
|
2021-02-21 18:38:15 +00:00
|
|
|
|
2022-04-27 15:37:07 +00:00
|
|
|
#include "openmw_vertex.h.glsl"
|
|
|
|
|
2016-02-19 00:30:15 +00:00
|
|
|
varying vec2 uv;
|
2020-03-14 12:39:32 +00:00
|
|
|
varying float euclideanDepth;
|
|
|
|
varying float linearDepth;
|
2016-02-19 00:30:15 +00:00
|
|
|
|
|
|
|
#define PER_PIXEL_LIGHTING (@normalMap || @forcePPL)
|
|
|
|
|
|
|
|
#if !PER_PIXEL_LIGHTING
|
2020-12-19 17:17:42 +00:00
|
|
|
centroid varying vec3 passLighting;
|
2018-05-11 18:15:04 +00:00
|
|
|
centroid varying vec3 shadowDiffuseLighting;
|
2016-02-19 00:30:15 +00:00
|
|
|
#endif
|
2016-02-20 18:54:47 +00:00
|
|
|
varying vec3 passViewPos;
|
2016-03-22 20:00:31 +00:00
|
|
|
varying vec3 passNormal;
|
2016-02-19 00:30:15 +00:00
|
|
|
|
2020-12-19 17:17:42 +00:00
|
|
|
#include "vertexcolors.glsl"
|
2018-06-24 22:40:52 +00:00
|
|
|
#include "shadows_vertex.glsl"
|
2021-03-28 18:06:00 +00:00
|
|
|
|
2016-02-19 00:30:15 +00:00
|
|
|
#include "lighting.glsl"
|
2021-06-01 19:15:25 +00:00
|
|
|
#include "depth.glsl"
|
2016-02-19 00:30:15 +00:00
|
|
|
|
|
|
|
void main(void)
|
|
|
|
{
|
2022-04-26 17:54:24 +00:00
|
|
|
gl_Position = mw_modelToClip(gl_Vertex);
|
2016-02-19 00:30:15 +00:00
|
|
|
|
2022-04-26 17:54:24 +00:00
|
|
|
vec4 viewPos = mw_modelToView(gl_Vertex);
|
2016-02-19 00:30:15 +00:00
|
|
|
gl_ClipVertex = viewPos;
|
2020-03-14 12:39:32 +00:00
|
|
|
euclideanDepth = length(viewPos.xyz);
|
2021-07-09 17:05:27 +00:00
|
|
|
linearDepth = getLinearDepth(gl_Position.z, viewPos.z);
|
2020-06-15 08:43:51 +00:00
|
|
|
|
|
|
|
#if (!PER_PIXEL_LIGHTING || @shadows_enabled)
|
2019-01-30 22:28:00 +00:00
|
|
|
vec3 viewNormal = normalize((gl_NormalMatrix * gl_Normal).xyz);
|
2020-06-15 08:43:51 +00:00
|
|
|
#endif
|
2016-02-19 00:30:15 +00:00
|
|
|
|
2020-05-12 15:21:02 +00:00
|
|
|
passColor = gl_Color;
|
2016-03-22 20:00:31 +00:00
|
|
|
passNormal = gl_Normal.xyz;
|
2016-02-20 18:54:47 +00:00
|
|
|
passViewPos = viewPos.xyz;
|
2016-02-19 00:30:15 +00:00
|
|
|
|
2020-12-19 17:17:42 +00:00
|
|
|
#if !PER_PIXEL_LIGHTING
|
|
|
|
vec3 diffuseLight, ambientLight;
|
|
|
|
doLighting(viewPos.xyz, viewNormal, diffuseLight, ambientLight, shadowDiffuseLighting);
|
|
|
|
passLighting = getDiffuseColor().xyz * diffuseLight + getAmbientColor().xyz * ambientLight + getEmissionColor().xyz;
|
2021-04-22 23:49:06 +00:00
|
|
|
clampLightingResult(passLighting);
|
2020-12-19 17:17:42 +00:00
|
|
|
shadowDiffuseLighting *= getDiffuseColor().xyz;
|
|
|
|
#endif
|
|
|
|
|
2016-02-19 00:30:15 +00:00
|
|
|
uv = gl_MultiTexCoord0.xy;
|
2017-09-20 23:25:48 +00:00
|
|
|
|
2020-06-15 08:43:51 +00:00
|
|
|
#if (@shadows_enabled)
|
2019-01-30 22:28:00 +00:00
|
|
|
setupShadowCoords(viewPos, viewNormal);
|
2020-06-15 08:43:51 +00:00
|
|
|
#endif
|
2016-02-19 00:30:15 +00:00
|
|
|
}
|