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

 
#version 120

uniform sampler2D diffuseMap;

void fullbright_lighting_water()
{
	gl_FragColor = texture2D(diffuseMap, gl_TexCoord[0].xy);
}