summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class2/lighting/lightSpecularV.glsl
blob: 6400b45d9e3acec89dffbf8cf7d4e73e76aaff8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** 
 * @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);
}