File: vague.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 (23 lines) | stat: -rw-r--r-- 419 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Cyrille Henry 2007

#extension GL_ARB_texture_rectangle : enable

uniform float K; 
uniform sampler2DRect texture, texture1, texture2;

const float dx = 1.; 
const float dy = 1.; 
const float dp = 1.; 

void main (void)
{
	float light;
	vec2 position = gl_TexCoord[0].st;
	vec4 C, C1;
	C  = texture2DRect(texture2, position)  ;

	vec4 color2 = texture2DRect(texture1, (position+K*C.rg));

	gl_FragColor = color2;

}