1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2024-12-29 12:20:41 +00:00

Rename viewPos to viewDirection

This commit is contained in:
scrawl 2016-02-21 01:28:42 +01:00
parent 8e826eefe6
commit 900b522d13

View File

@ -42,12 +42,12 @@ vec4 doLighting(vec3 viewPos, vec3 viewNormal, vec4 vertexColor)
}
vec3 getSpecular(vec3 viewNormal, vec3 viewPos, float shininess, vec3 matSpec)
vec3 getSpecular(vec3 viewNormal, vec3 viewDirection, float shininess, vec3 matSpec)
{
vec3 lightDir = normalize(gl_LightSource[0].position.xyz);
float NdotL = max(dot(viewNormal, lightDir), 0.0);
if (NdotL < 0)
return vec3(0,0,0);
vec3 halfVec = normalize(lightDir - viewPos);
vec3 halfVec = normalize(lightDir - viewDirection);
return pow(max(dot(viewNormal, halfVec), 0.0), 128) * gl_LightSource[0].specular.xyz * matSpec;
}