kinectLike.frag~ 382 B

1234567891011121314151617181920
  1. varying float depth;
  2. varying float XYlimit;
  3. uniform float pos;
  4. uniform float thres;
  5. void main (void)
  6. {
  7. vec4 color = gl_Color;
  8. //color.r = cos(depth);
  9. //color.g = cos(depth+3.14*2.*0.333);
  10. //color.b = cos(depth+3.14*2.*0.666);
  11. if ((depth<=pos+thres/2 && depth > pos -thres/2) && depth > 1)
  12. { color.a = 1;}
  13. else {color.a=0;}
  14. //color.a *= XYlimit;
  15. gl_FragColor = color;
  16. }