home *** CD-ROM | disk | FTP | other *** search
/ BitJam / bitjam1-1.iso / interface / sign_of_life / borders.ps < prev    next >
Text File  |  2007-09-05  |  201b  |  8 lines

  1. float pos;
  2. float color;
  3. sampler2D texture1;
  4. float4 main(float2 x:texcoord):color {
  5.     if((x.y < (.083 - pos)) || (x.y > (.667 + pos))) return(0);
  6.     else return(tex2D(texture1, x) * color);
  7. }
  8.