home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 January / Gamestar_69_2005-01_dvd.iso / Dema / theprojectv1-0.exe / FCData / Shaders.pak / Shaders / Scripts / CryShaders / Templates.csl < prev   
Encoding:
Text File  |  2004-10-27  |  846 b   |  66 lines

  1. ; Shaders Script file
  2. ; Copyright (c) 2001-2003 Crytek Studios. All Rights Reserved.
  3. ; Author: Honich Andrey
  4.  
  5.  
  6.  
  7. Version (1.00)
  8.  
  9.  
  10.  
  11. Shader 'NoDraw'
  12. (
  13.   Params
  14.   {
  15.     NoDraw
  16.   }
  17.   Layer '0'
  18.   (
  19.     Map = $whiteimage
  20.   )
  21. )
  22.  
  23.  
  24. // this shader will clear the stencil buffer and set
  25. // the normal stencil test to preventing the light from being drawn 
  26. // in shadowed areas
  27. Shader 'StateClearAndTestStencilBuffer'
  28. (
  29.   State
  30.   (
  31.     DepthFunc = EQUAL     
  32.     DepthWrite = 0
  33.  
  34.     ClearStencil
  35.     Stencil
  36.     (
  37.       Func (EQUAL 0 255)          
  38.       Op (KEEP KEEP KEEP)
  39.     )    
  40.   )
  41.  
  42. )
  43.  
  44.  
  45. Shader 'StateClearStencil'
  46. (
  47.   State
  48.   (
  49.     Stencil
  50.     (
  51.        Func (ALWAYS 0 255)              
  52.        Op (KEEP KEEP ZERO)
  53.     )    
  54.   )
  55. )
  56.  
  57. Shader 'StateWireframe'
  58. (
  59.   State
  60.   (
  61.     PolyLine
  62.   )
  63. )
  64.  
  65.  
  66.