home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / SPlayer / SPlayerSetup.exe / splayer.exe / 2052 / FILE / 713 < prev    next >
Encoding:
Text File  |  2009-12-01  |  231 b   |  13 lines

  1. sampler s0 : register(s0);
  2.  
  3. #define const_1 (16.0/255.0)
  4. #define const_2 (255.0/219.0)
  5.  
  6. float4 main(float2 tex : TEXCOORD0) : COLOR
  7. {
  8.     // original pixel
  9.     float4 c0 = tex2D(s0,tex);
  10.  
  11.     return((c0 - const_1) * const_2);
  12. }
  13.