Same fix as acb22b4597 but into nodes_shader

This commit is contained in:
Loic Blot 2015-01-12 11:50:53 +01:00
parent b0bd76708f
commit a2ac5b85c4
1 changed files with 6 additions and 1 deletions

View File

@ -87,7 +87,12 @@ vec4 base = texture2D(baseTexture, uv).rgba;
vec3 E = normalize(eyeVec);
float specular = pow(clamp(dot(reflect(L, bump.xyz), E), 0.0, 1.0),0.5);
float diffuse = dot(E,bump.xyz);
color = 0.05*base.rgb + diffuse*base.rgb + 0.2*specular*base.rgb;
/* Mathematic optimization
* Original: color = 0.05*base.rgb + diffuse*base.rgb + 0.2*specular*base.rgb;
* This optimization save 2 multiplications (orig: 4 multiplications + 3 additions
* end: 2 multiplications + 3 additions)
*/
color = (0.05 + diffuse + 0.2 * specular) * base.rgb
} else {
color = base.rgb;
}