home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 February / Gamestar_70_2005-02_dvd.iso / DVDStar / Editace / ogierinstall_103.exe / WClientMod_DV0.fp < prev    next >
Text File  |  2004-12-21  |  973b  |  46 lines

  1. !!ARBfp1.0
  2. OPTION ARB_precision_hint_fastest;
  3.  
  4. #/*»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»»*\
  5. #    File:            Program for darkness vision
  6. #                    
  7. #    Author:            Magnus H÷gdahl
  8. #                    
  9. #    Copyright:        Starbreeze AB 2004
  10. #                    
  11. #    History:
  12. #
  13. #\*____________________________________________________________________________________________*/
  14.  
  15. #-----------------------------------------
  16. OUTPUT oCol = result.color;
  17.  
  18. ATTRIB v0 = fragment.color;
  19. ATTRIB tc0 = fragment.texcoord[0];
  20. ATTRIB tc1 = fragment.texcoord[1];
  21.  
  22. #PARAM c0 = program.env[0];
  23. #PARAM c1 = program.env[1];
  24. #PARAM c2 = program.env[2];
  25. #PARAM c3 = program.env[3];
  26.  
  27. #PARAM const_val = { 0.5, 1.0, 2.0, 4.0 };
  28.  
  29. TEMP t0;
  30. TEMP t1;
  31.  
  32. TEMP r0;
  33. #TEMP r1;
  34. #TEMP r2;
  35. #-----------------------------------------
  36.  
  37. TEX t0, tc0, texture[0], 2D;
  38. TEX t1, tc1, texture[1], 2D;
  39.  
  40. MOV r0.rgb, t0;
  41. MUL r0.a, 3, t1.r;
  42. #MOV r0.rgb, t1.r;
  43. MOV oCol, r0;
  44.  
  45. END
  46.