home *** CD-ROM | disk | FTP | other *** search
- ; Shaders Script file
- ; Copyright (c) 2001-2003 Crytek Studios. All Rights Reserved.
- ; Author: Honich Andrey
-
-
-
- Version (1.00)
-
-
-
- Shader 'NoDraw'
- (
- Params
- {
- NoDraw
- }
- Layer '0'
- (
- Map = $whiteimage
- )
- )
-
-
- // this shader will clear the stencil buffer and set
- // the normal stencil test to preventing the light from being drawn
- // in shadowed areas
- Shader 'StateClearAndTestStencilBuffer'
- (
- State
- (
- DepthFunc = EQUAL
- DepthWrite = 0
-
- ClearStencil
- Stencil
- (
- Func (EQUAL 0 255)
- Op (KEEP KEEP KEEP)
- )
- )
-
- )
-
-
- Shader 'StateClearStencil'
- (
- State
- (
- Stencil
- (
- Func (ALWAYS 0 255)
- Op (KEEP KEEP ZERO)
- )
- )
- )
-
- Shader 'StateWireframe'
- (
- State
- (
- PolyLine
- )
- )
-
-
-