summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class1/interface/twotextureaddF.glsl
blob: d81b56fdb9856ef52419bd67042d09fb9491d970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** 
 * @file twotextureaddF.glsl
 *
 * $LicenseInfo:firstyear=2007&license=viewerlgpl$
 * $/LicenseInfo$
 */
 
uniform sampler2D tex0;
uniform sampler2D tex1;

void main() 
{
	gl_FragColor = texture2D(tex0, gl_TexCoord[0].xy)+texture2D(tex1, gl_TexCoord[1].xy);
}