dungeon_crawler

view prototype/sdr/mrt.p.glsl @ 18:5c41e6fcb300

- commandline arguments - stereoscopic rendering - FBO fixed
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 21 Aug 2012 03:17:48 +0300
parents 91180ee7b7d9
children 8a0ae6b4aa9b
line source
1 uniform sampler2D tex_dif;
3 void main()
4 {
5 vec4 texel = texture2D(tex_dif, gl_TexCoord[0].st);
6 gl_FragColor = texel;
7 }