istereo

annotate sdr/test.p.glsl @ 5:76ad575d72d0

trying to make it fucking work
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 07 Sep 2011 07:29:51 +0300
parents bb68fac22579
children b39d8607f4bb
rev   line source
nuclear@5 1 #ifdef GL_ES
nuclear@5 2 precision mediump float;
nuclear@5 3 #endif
nuclear@5 4
nuclear@2 5 varying vec4 var_color;
nuclear@2 6
nuclear@2 7 void main()
nuclear@2 8 {
nuclear@2 9 gl_FragColor = var_color;
nuclear@2 10 }