mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-20 04:26:03 +08:00
70 lines
1.7 KiB
C++
70 lines
1.7 KiB
C++
![]() |
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
||
|
//
|
||
|
// Purpose:
|
||
|
//
|
||
|
// $NoKeywords: $
|
||
|
//=============================================================================//
|
||
|
|
||
|
#include "BaseVSShader.h"
|
||
|
|
||
|
#include "writez_vs20.inc"
|
||
|
#include "white_ps20.inc"
|
||
|
#include "white_ps20b.inc"
|
||
|
|
||
|
// memdbgon must be the last include file in a .cpp file!!!
|
||
|
#include "tier0/memdbgon.h"
|
||
|
|
||
|
DEFINE_FALLBACK_SHADER( WriteStencil, WriteStencil_DX9 )
|
||
|
|
||
|
BEGIN_VS_SHADER_FLAGS( WriteStencil_DX9, "Help for WriteStencil", SHADER_NOT_EDITABLE )
|
||
|
|
||
|
BEGIN_SHADER_PARAMS
|
||
|
END_SHADER_PARAMS
|
||
|
|
||
|
SHADER_INIT_PARAMS()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
SHADER_FALLBACK
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
SHADER_INIT
|
||
|
{
|
||
|
SET_FLAGS2( MATERIAL_VAR2_SUPPORTS_HW_SKINNING );
|
||
|
}
|
||
|
|
||
|
SHADER_DRAW
|
||
|
{
|
||
|
SHADOW_STATE
|
||
|
{
|
||
|
pShaderShadow->EnableColorWrites( false ); //
|
||
|
pShaderShadow->EnableAlphaWrites( false ); // Write ONLY to stencil
|
||
|
pShaderShadow->EnableDepthWrites( false ); //
|
||
|
|
||
|
DECLARE_STATIC_VERTEX_SHADER( writez_vs20 );
|
||
|
SET_STATIC_VERTEX_SHADER( writez_vs20 );
|
||
|
|
||
|
//No pixel shader, doubles fill rate.
|
||
|
|
||
|
// Set stream format (note that this shader supports compression)
|
||
|
unsigned int flags = VERTEX_POSITION | VERTEX_FORMAT_COMPRESSED;
|
||
|
int nTexCoordCount = 1;
|
||
|
int userDataSize = 0;
|
||
|
pShaderShadow->VertexShaderVertexFormat( flags, nTexCoordCount, NULL, userDataSize );
|
||
|
}
|
||
|
DYNAMIC_STATE
|
||
|
{
|
||
|
DECLARE_DYNAMIC_VERTEX_SHADER( writez_vs20 );
|
||
|
SET_DYNAMIC_VERTEX_SHADER_COMBO( COMPRESSED_VERTS, (int)vertexCompression );
|
||
|
SET_DYNAMIC_VERTEX_SHADER_COMBO( SKINNING, pShaderAPI->GetCurrentNumBones() > 0 );
|
||
|
SET_DYNAMIC_VERTEX_SHADER( writez_vs20 );
|
||
|
|
||
|
//No pixel shader, doubles fill rate.
|
||
|
}
|
||
|
Draw();
|
||
|
}
|
||
|
END_SHADER
|
||
|
|