summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class1/lighting/lightFullbrightWaterF.glsl
blob: 0ae6dc89e25a4c5ecb4bdcb557f1651b4717a4eb (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$
 */

 


uniform sampler2D diffuseMap;

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