home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Aplikacje_64-bitowe / Daum_PotPlayer / PotPlayer1.5.29332-x64.EXE / PxShader / Levels.txt < prev    next >
Text File  |  2010-05-20  |  269b  |  16 lines

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