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

// All lights, no specular highlights

vec4 sumLights(vec3 pos, vec3 norm, vec4 color, vec4 baseLight);

vec4 calcLighting(vec3 pos, vec3 norm, vec4 color, vec4 baseLight)
{
	return sumLights(pos, norm, color, baseLight);
}