summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class2/lighting/lightSpecularV.glsl
blob: 3384f64d07a4d293f27e927d251a73e2f04188ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/** 
 * @file lightSpecularV.glsl
 *
 * $LicenseInfo:firstyear=2007&license=viewerlgpl$
 * $/LicenseInfo$
 */
 


// All lights, no specular highlights

vec4 sumLightsSpecular(vec3 pos, vec3 norm, vec4 color, inout vec4 specularColor, vec4 baseCol);

vec4 calcLightingSpecular(vec3 pos, vec3 norm, vec4 color, inout vec4 specularColor, vec4 baseCol)
{
	return sumLightsSpecular(pos, norm, color, specularColor, baseCol);
}