home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 October / PCWorld_2006-10_cd.bin / temacd / cccp / Combined-Community-Codec-Pack-2006-07-22.exe / MPC / mplayerc.exe / FILE / 711 < prev    next >
Text File  |  2006-03-20  |  583b  |  30 lines

  1. sampler s0 : register(s0);
  2. float4 p0 : register(c0);
  3. float4 p1 : register(c1);
  4.  
  5. #define width (p0[0])
  6. #define height (p0[1])
  7. #define counter (p0[2])
  8. #define clock (p0[3])
  9. #define one_over_width (p1[0])
  10. #define one_over_height (p1[1])
  11.  
  12. #define PI acos(-1)
  13.  
  14. float4 main(float2 tex : TEXCOORD0) : COLOR
  15. {
  16.     // don't look at this for too long, you'll get dizzy :)
  17.     
  18.     float4 c0 = 0;
  19.     
  20.     tex.x += sin(tex.x+clock/0.3)/20;
  21.     tex.y += sin(tex.x+clock/0.3)/20;
  22.     
  23.     if(tex.x >= 0 && tex.x <= 1 && tex.y >= 0 && tex.y <= 1)
  24.     {
  25.         c0 = tex2D(s0, tex);
  26.     }
  27.     
  28.     return c0;
  29. }
  30.