summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class2/lighting/lightSpecularV.glsl
blob: c3384ffc5dd8791e61f0bb03a288e8a6f2f03e63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** 
 * @file lightSpecularV.glsl
 *
 * Copyright (c) 2007-$CurrentYear$, Linden Research, Inc.
 * $License$
 */

// 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);
}