File: multitexture_rect.frag

package info (click to toggle)
gem 1%3A0.93.3-7
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 28,548 kB
  • ctags: 29,332
  • sloc: cpp: 134,188; sh: 11,215; makefile: 2,853; ansic: 84
file content (15 lines) | stat: -rw-r--r-- 341 bytes parent folder | download | duplicates (6)
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.;
}