2022-04-04 22:51:23 +02:00
|
|
|
#version @GLSLVersion
|
|
|
|
|
|
|
|
#include "multiview_vertex.glsl"
|
2016-02-16 18:18:48 +01:00
|
|
|
|
2021-03-14 21:42:34 -07:00
|
|
|
#if @useUBO
|
|
|
|
#extension GL_ARB_uniform_buffer_object : require
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if @useGPUShader4
|
|
|
|
#extension GL_EXT_gpu_shader4: require
|
|
|
|
#endif
|
2021-02-21 10:38:15 -08:00
|
|
|
|
2022-04-27 17:37:07 +02:00
|
|
|
#include "openmw_vertex.h.glsl"
|
2016-02-16 18:18:48 +01:00
|
|
|
#if @diffuseMap
|
|
|
|
varying vec2 diffuseMapUV;
|
|
|
|
#endif
|
2016-02-16 22:32:59 +01:00
|
|
|
|
2016-02-17 02:52:44 +01:00
|
|
|
#if @darkMap
|
|
|
|
varying vec2 darkMapUV;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if @detailMap
|
|
|
|
varying vec2 detailMapUV;
|
|
|
|
#endif
|
|
|
|
|
2016-03-01 18:41:36 +01:00
|
|
|
#if @decalMap
|
|
|
|
varying vec2 decalMapUV;
|
|
|
|
#endif
|
|
|
|
|
2016-02-17 02:52:44 +01:00
|
|
|
#if @emissiveMap
|
|
|
|
varying vec2 emissiveMapUV;
|
|
|
|
#endif
|
|
|
|
|
2016-02-18 00:00:12 +01:00
|
|
|
#if @normalMap
|
|
|
|
varying vec2 normalMapUV;
|
2016-06-16 18:07:10 +02:00
|
|
|
varying vec4 passTangent;
|
2016-02-18 00:00:12 +01:00
|
|
|
#endif
|
|
|
|
|
2016-02-18 23:05:44 +01:00
|
|
|
#if @envMap
|
|
|
|
varying vec2 envMapUV;
|
|
|
|
#endif
|
|
|
|
|
2020-03-02 04:03:36 +03:00
|
|
|
#if @bumpMap
|
|
|
|
varying vec2 bumpMapUV;
|
|
|
|
#endif
|
|
|
|
|
2016-02-20 19:02:11 +01:00
|
|
|
#if @specularMap
|
|
|
|
varying vec2 specularMapUV;
|
|
|
|
#endif
|
|
|
|
|
2022-01-08 05:53:10 +03:00
|
|
|
#if @glossMap
|
|
|
|
varying vec2 glossMapUV;
|
|
|
|
#endif
|
|
|
|
|
2020-03-14 16:39:32 +04:00
|
|
|
varying float euclideanDepth;
|
|
|
|
varying float linearDepth;
|
2016-02-16 23:30:23 +01:00
|
|
|
|
2016-02-18 17:08:18 +01:00
|
|
|
#define PER_PIXEL_LIGHTING (@normalMap || @forcePPL)
|
2016-02-17 23:39:06 +01:00
|
|
|
|
|
|
|
#if !PER_PIXEL_LIGHTING
|
2020-12-19 20:17:42 +03:00
|
|
|
centroid varying vec3 passLighting;
|
2018-05-11 19:15:04 +01:00
|
|
|
centroid varying vec3 shadowDiffuseLighting;
|
2020-12-17 00:46:09 +03:00
|
|
|
uniform float emissiveMult;
|
2016-02-17 23:39:06 +01:00
|
|
|
#endif
|
2016-02-20 19:02:11 +01:00
|
|
|
varying vec3 passViewPos;
|
2016-03-22 21:12:16 +01:00
|
|
|
varying vec3 passNormal;
|
2016-02-16 23:30:23 +01:00
|
|
|
|
2020-12-19 20:17:42 +03:00
|
|
|
#include "vertexcolors.glsl"
|
2018-06-24 23:40:52 +01:00
|
|
|
#include "shadows_vertex.glsl"
|
2021-03-28 11:06:00 -07:00
|
|
|
|
2016-02-17 23:29:26 +01:00
|
|
|
#include "lighting.glsl"
|
2021-06-01 12:15:25 -07:00
|
|
|
#include "depth.glsl"
|
2016-02-16 23:30:23 +01:00
|
|
|
|
2016-02-16 18:18:48 +01:00
|
|
|
void main(void)
|
|
|
|
{
|
2022-04-26 19:54:24 +02:00
|
|
|
gl_Position = mw_modelToClip(gl_Vertex);
|
2016-02-16 18:18:48 +01:00
|
|
|
|
2022-04-26 19:54:24 +02:00
|
|
|
vec4 viewPos = mw_modelToView(gl_Vertex);
|
2021-07-09 10:05:27 -07:00
|
|
|
|
2016-02-17 02:04:30 +01:00
|
|
|
gl_ClipVertex = viewPos;
|
2020-03-14 16:39:32 +04:00
|
|
|
euclideanDepth = length(viewPos.xyz);
|
2021-07-09 10:05:27 -07:00
|
|
|
linearDepth = getLinearDepth(gl_Position.z, viewPos.z);
|
2020-03-14 16:39:32 +04:00
|
|
|
|
2020-06-15 12:43:51 +04:00
|
|
|
#if (@envMap || !PER_PIXEL_LIGHTING || @shadows_enabled)
|
2016-02-17 02:04:30 +01:00
|
|
|
vec3 viewNormal = normalize((gl_NormalMatrix * gl_Normal).xyz);
|
2020-06-15 12:43:51 +04:00
|
|
|
#endif
|
2016-02-17 02:04:30 +01:00
|
|
|
|
2016-02-18 23:05:44 +01:00
|
|
|
#if @envMap
|
|
|
|
vec3 viewVec = normalize(viewPos.xyz);
|
|
|
|
vec3 r = reflect( viewVec, viewNormal );
|
|
|
|
float m = 2.0 * sqrt( r.x*r.x + r.y*r.y + (r.z+1.0)*(r.z+1.0) );
|
|
|
|
envMapUV = vec2(r.x/m + 0.5, r.y/m + 0.5);
|
|
|
|
#endif
|
|
|
|
|
2016-02-16 18:18:48 +01:00
|
|
|
#if @diffuseMap
|
2016-02-17 02:46:47 +01:00
|
|
|
diffuseMapUV = (gl_TextureMatrix[@diffuseMapUV] * gl_MultiTexCoord@diffuseMapUV).xy;
|
2016-02-16 18:18:48 +01:00
|
|
|
#endif
|
2016-02-16 23:30:23 +01:00
|
|
|
|
2016-02-17 02:52:44 +01:00
|
|
|
#if @darkMap
|
|
|
|
darkMapUV = (gl_TextureMatrix[@darkMapUV] * gl_MultiTexCoord@darkMapUV).xy;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if @detailMap
|
2016-03-01 18:40:18 +01:00
|
|
|
detailMapUV = (gl_TextureMatrix[@detailMapUV] * gl_MultiTexCoord@detailMapUV).xy;
|
2016-02-17 02:52:44 +01:00
|
|
|
#endif
|
|
|
|
|
2016-03-01 18:41:36 +01:00
|
|
|
#if @decalMap
|
|
|
|
decalMapUV = (gl_TextureMatrix[@decalMapUV] * gl_MultiTexCoord@decalMapUV).xy;
|
|
|
|
#endif
|
|
|
|
|
2016-02-17 02:52:44 +01:00
|
|
|
#if @emissiveMap
|
|
|
|
emissiveMapUV = (gl_TextureMatrix[@emissiveMapUV] * gl_MultiTexCoord@emissiveMapUV).xy;
|
|
|
|
#endif
|
|
|
|
|
2016-02-18 00:00:12 +01:00
|
|
|
#if @normalMap
|
|
|
|
normalMapUV = (gl_TextureMatrix[@normalMapUV] * gl_MultiTexCoord@normalMapUV).xy;
|
2016-06-16 18:07:10 +02:00
|
|
|
passTangent = gl_MultiTexCoord7.xyzw;
|
2016-02-18 00:00:12 +01:00
|
|
|
#endif
|
|
|
|
|
2020-03-02 04:03:36 +03:00
|
|
|
#if @bumpMap
|
|
|
|
bumpMapUV = (gl_TextureMatrix[@bumpMapUV] * gl_MultiTexCoord@bumpMapUV).xy;
|
|
|
|
#endif
|
|
|
|
|
2016-02-20 19:02:11 +01:00
|
|
|
#if @specularMap
|
|
|
|
specularMapUV = (gl_TextureMatrix[@specularMapUV] * gl_MultiTexCoord@specularMapUV).xy;
|
|
|
|
#endif
|
|
|
|
|
2022-01-08 05:53:10 +03:00
|
|
|
#if @glossMap
|
|
|
|
glossMapUV = (gl_TextureMatrix[@glossMapUV] * gl_MultiTexCoord@glossMapUV).xy;
|
|
|
|
#endif
|
|
|
|
|
2020-05-12 18:21:02 +03:00
|
|
|
passColor = gl_Color;
|
2016-02-20 19:02:11 +01:00
|
|
|
passViewPos = viewPos.xyz;
|
2016-03-22 21:12:16 +01:00
|
|
|
passNormal = gl_Normal.xyz;
|
2017-09-21 00:25:48 +01:00
|
|
|
|
2020-12-19 20:17:42 +03:00
|
|
|
#if !PER_PIXEL_LIGHTING
|
|
|
|
vec3 diffuseLight, ambientLight;
|
|
|
|
doLighting(viewPos.xyz, viewNormal, diffuseLight, ambientLight, shadowDiffuseLighting);
|
2020-12-17 00:46:09 +03:00
|
|
|
vec3 emission = getEmissionColor().xyz * emissiveMult;
|
|
|
|
passLighting = getDiffuseColor().xyz * diffuseLight + getAmbientColor().xyz * ambientLight + emission;
|
2021-04-22 16:49:06 -07:00
|
|
|
clampLightingResult(passLighting);
|
2020-12-19 20:17:42 +03:00
|
|
|
shadowDiffuseLighting *= getDiffuseColor().xyz;
|
|
|
|
#endif
|
|
|
|
|
2020-06-15 12:43:51 +04:00
|
|
|
#if (@shadows_enabled)
|
2019-01-30 22:28:00 +00:00
|
|
|
setupShadowCoords(viewPos, viewNormal);
|
2020-06-15 12:43:51 +04:00
|
|
|
#endif
|
2016-02-16 18:18:48 +01:00
|
|
|
}
|