diff options
Diffstat (limited to 'sp/src/materialsystem/stdshaders/worldvertextransition_dx6_helper.h')
| -rw-r--r-- | sp/src/materialsystem/stdshaders/worldvertextransition_dx6_helper.h | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/sp/src/materialsystem/stdshaders/worldvertextransition_dx6_helper.h b/sp/src/materialsystem/stdshaders/worldvertextransition_dx6_helper.h new file mode 100644 index 00000000..16e0bfd5 --- /dev/null +++ b/sp/src/materialsystem/stdshaders/worldvertextransition_dx6_helper.h @@ -0,0 +1,39 @@ +//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +//============================================================================= + +#ifndef WORLDVERTEXTRANSITION_DX6_HELPER_H +#define WORLDVERTEXTRANSITION_DX6_HELPER_H + +//----------------------------------------------------------------------------- +// Forward declarations +//----------------------------------------------------------------------------- +class CBaseShader; +class IMaterialVar; +class IShaderDynamicAPI; +class IShaderShadow; + + +//----------------------------------------------------------------------------- +// Init params/ init/ draw methods +//----------------------------------------------------------------------------- +struct WorldVertexTransition_DX6_Vars_t +{ + WorldVertexTransition_DX6_Vars_t() { memset( this, 0xFF, sizeof(WorldVertexTransition_DX6_Vars_t) ); } + + int m_nBaseTextureVar; + int m_nBaseTextureFrameVar; + int m_nBaseTexture2Var; + int m_nFlashlightTextureVar; +}; + +void InitParamsWorldVertexTransition_DX6( IMaterialVar** params, WorldVertexTransition_DX6_Vars_t &info ); +void InitWorldVertexTransition_DX6( CBaseShader *pShader, IMaterialVar** params, WorldVertexTransition_DX6_Vars_t &info ); +void DrawWorldVertexTransition_DX6( CBaseShader *pShader, IMaterialVar** params, + IShaderDynamicAPI *pShaderAPI, IShaderShadow* pShaderShadow, WorldVertexTransition_DX6_Vars_t &info ); + + +#endif // WORLDVERTEXTRANSITION_DX6_HELPER_H
\ No newline at end of file |