blob: 29ad9a995b961ba972640106d7f7d4c00c6ca506 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* @file simpleF.glsl
*
* $LicenseInfo:firstyear=2007&license=viewerlgpl$
* $/LicenseInfo$
*/
uniform sampler2DRect RenderTexture;
void main(void)
{
vec3 color = vec3(texture2DRect(RenderTexture, gl_TexCoord[0].st));
gl_FragColor = vec4(1.0 - color, 1.0);
}
|