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

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