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 / Levels2.txt < prev    next >
Text File  |  2010-05-20  |  422b  |  25 lines

  1. // Levels=ps_2_0
  2. // Code from MPC
  3.  
  4. sampler s0 : register(s0);
  5. float4 p0 : register(c0);
  6.  
  7. #define height (p0[1])
  8. //#define width (p0[0])
  9.  
  10. #define const_1 (16.0/255.0)
  11. #define const_2 (255.0/219.0)
  12.  
  13. float4 main(float2 tex : TEXCOORD0) : COLOR
  14. {
  15.     // original pixel
  16.     float4 c0 = tex2D(s0,tex);
  17.  
  18.     if(height > 719 ) {
  19.     //if(width > 1279) {
  20.         return c0;
  21.     } else {
  22.         return((c0 - const_1) * const_2);
  23.     }
  24. }
  25.