File: multitexture.frag

package info (click to toggle)
gem 1%3A0.94-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,636 kB
  • sloc: cpp: 174,297; ansic: 42,132; makefile: 3,852; sh: 1,096; objc: 389
file content (13 lines) | stat: -rw-r--r-- 251 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
uniform sampler2D MyTex;
uniform sampler2D MyTex1;

varying vec2 texcoord1;
varying vec2 texcoord2;

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