aboutsummaryrefslogtreecommitdiff
path: root/packages/noncvs/windows/extra/Gem/examples/10.glsl/multitexture_rect.frag
blob: 3eb9b2b4c6e7c294205a9fe8583d9f96ce91007e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#extension GL_ARB_texture_rectangle : enable

uniform sampler2DRect MyTex;
uniform sampler2DRect MyTex1;

varying vec2 texcoord1;
varying vec2 texcoord2;

void main (void)
{
 vec4 color = texture2DRect(MyTex,  texcoord1);
 vec4 color2 = texture2DRect(MyTex1, texcoord1); // texcoord2 does not work.
 gl_FragColor = (color + color2) / 2.;
}