invisible

diff data/shaders/invisible.f.glsl @ 23:b50ad2711f5f

fixed fov aspect projection et c, added shaders todo: segmentation
author Eleni Maria Stea <eleni@mutantstargoat.com>
date Sat, 16 Nov 2013 23:29:15 +0200
parents 531a814d4d6b
children 8b81571dd4dd
line diff
     1.1 --- a/data/shaders/invisible.f.glsl	Sun Nov 10 14:32:29 2013 +0200
     1.2 +++ b/data/shaders/invisible.f.glsl	Sat Nov 16 23:29:15 2013 +0200
     1.3 @@ -0,0 +1,6 @@
     1.4 +uniform sampler2D tex;
     1.5 +
     1.6 +void main()
     1.7 +{
     1.8 +	gl_FragColor = texture2D(tex, gl_TexCoord[0].xy);
     1.9 +}