initial
This commit is contained in:
122
materialsystem/stdshaders/fxctmp9_360/particlesphere_ps20b.inc
Normal file
122
materialsystem/stdshaders/fxctmp9_360/particlesphere_ps20b.inc
Normal file
@@ -0,0 +1,122 @@
|
||||
// ALL SKIP STATEMENTS THAT AFFECT THIS SHADER!!!
|
||||
// defined $PIXELFOGTYPE && defined $WRITEWATERFOGTODESTALPHA && ( $PIXELFOGTYPE != 1 ) && $WRITEWATERFOGTODESTALPHA
|
||||
// defined $LIGHTING_PREVIEW && defined $FASTPATHENVMAPTINT && $LIGHTING_PREVIEW && $FASTPATHENVMAPTINT
|
||||
// defined $LIGHTING_PREVIEW && defined $FASTPATHENVMAPCONTRAST && $LIGHTING_PREVIEW && $FASTPATHENVMAPCONTRAST
|
||||
// defined $LIGHTING_PREVIEW && defined $FASTPATH && $LIGHTING_PREVIEW && $FASTPATH
|
||||
// ($FLASHLIGHT || $FLASHLIGHTSHADOWS) && $LIGHTING_PREVIEW
|
||||
#include "shaderlib/cshader.h"
|
||||
class particlesphere_ps20b_Static_Index
|
||||
{
|
||||
private:
|
||||
int m_nDEPTHBLEND;
|
||||
#ifdef _DEBUG
|
||||
bool m_bDEPTHBLEND;
|
||||
#endif
|
||||
public:
|
||||
void SetDEPTHBLEND( int i )
|
||||
{
|
||||
Assert( i >= 0 && i <= 1 );
|
||||
m_nDEPTHBLEND = i;
|
||||
#ifdef _DEBUG
|
||||
m_bDEPTHBLEND = true;
|
||||
#endif
|
||||
}
|
||||
void SetDEPTHBLEND( bool i )
|
||||
{
|
||||
Assert( ( i ? 1 : 0 ) >= 0 && ( i ? 1 : 0 ) <= 1 );
|
||||
m_nDEPTHBLEND = i ? 1 : 0;
|
||||
#ifdef _DEBUG
|
||||
m_bDEPTHBLEND = true;
|
||||
#endif
|
||||
}
|
||||
public:
|
||||
// CONSTRUCTOR
|
||||
particlesphere_ps20b_Static_Index( IShaderShadow *pShaderShadow, IMaterialVar **params )
|
||||
{
|
||||
#ifdef _DEBUG
|
||||
m_bDEPTHBLEND = false;
|
||||
#endif // _DEBUG
|
||||
m_nDEPTHBLEND = 0;
|
||||
}
|
||||
int GetIndex()
|
||||
{
|
||||
// Asserts to make sure that we aren't using any skipped combinations.
|
||||
// Asserts to make sure that we are setting all of the combination vars.
|
||||
#ifdef _DEBUG
|
||||
bool bAllStaticVarsDefined = m_bDEPTHBLEND;
|
||||
Assert( bAllStaticVarsDefined );
|
||||
#endif // _DEBUG
|
||||
return ( 2 * m_nDEPTHBLEND ) + 0;
|
||||
}
|
||||
};
|
||||
#define shaderStaticTest_particlesphere_ps20b psh_forgot_to_set_static_DEPTHBLEND + 0
|
||||
class particlesphere_ps20b_Dynamic_Index
|
||||
{
|
||||
private:
|
||||
int m_nPIXELFOGTYPE;
|
||||
#ifdef _DEBUG
|
||||
bool m_bPIXELFOGTYPE;
|
||||
#endif
|
||||
public:
|
||||
void SetPIXELFOGTYPE( int i )
|
||||
{
|
||||
Assert( i >= 0 && i <= 1 );
|
||||
m_nPIXELFOGTYPE = i;
|
||||
#ifdef _DEBUG
|
||||
m_bPIXELFOGTYPE = true;
|
||||
#endif
|
||||
}
|
||||
void SetPIXELFOGTYPE( bool i )
|
||||
{
|
||||
Assert( ( i ? 1 : 0 ) >= 0 && ( i ? 1 : 0 ) <= 1 );
|
||||
m_nPIXELFOGTYPE = i ? 1 : 0;
|
||||
#ifdef _DEBUG
|
||||
m_bPIXELFOGTYPE = true;
|
||||
#endif
|
||||
}
|
||||
public:
|
||||
// CONSTRUCTOR
|
||||
particlesphere_ps20b_Dynamic_Index( IShaderDynamicAPI *pShaderAPI )
|
||||
{
|
||||
#ifdef _DEBUG
|
||||
m_bPIXELFOGTYPE = true;
|
||||
#endif // _DEBUG
|
||||
m_nPIXELFOGTYPE = ( pShaderAPI->GetSceneFogMode() == MATERIAL_FOG_LINEAR_BELOW_FOG_Z ) ;
|
||||
}
|
||||
int GetIndex()
|
||||
{
|
||||
// Asserts to make sure that we aren't using any skipped combinations.
|
||||
// Asserts to make sure that we are setting all of the combination vars.
|
||||
#ifdef _DEBUG
|
||||
bool bAllDynamicVarsDefined = m_bPIXELFOGTYPE;
|
||||
Assert( bAllDynamicVarsDefined );
|
||||
#endif // _DEBUG
|
||||
return ( 1 * m_nPIXELFOGTYPE ) + 0;
|
||||
}
|
||||
};
|
||||
#define shaderDynamicTest_particlesphere_ps20b 0
|
||||
|
||||
static const ShaderComboInformation_t s_DynamicComboArray_particlesphere_ps20b[1] =
|
||||
{
|
||||
{ "PIXELFOGTYPE", 0, 1 },
|
||||
};
|
||||
|
||||
static const ShaderComboInformation_t s_StaticComboArray_particlesphere_ps20b[1] =
|
||||
{
|
||||
{ "DEPTHBLEND", 0, 1 },
|
||||
};
|
||||
static const ShaderComboSemantics_t particlesphere_ps20b_combos =
|
||||
{
|
||||
"particlesphere_ps20b", s_DynamicComboArray_particlesphere_ps20b, 1, s_StaticComboArray_particlesphere_ps20b, 1
|
||||
};
|
||||
|
||||
class ConstructMe_particlesphere_ps20b
|
||||
{
|
||||
public:
|
||||
ConstructMe_particlesphere_ps20b()
|
||||
{
|
||||
GetShaderDLL()->AddShaderComboInformation( &particlesphere_ps20b_combos );
|
||||
}
|
||||
};
|
||||
|
||||
static ConstructMe_particlesphere_ps20b s_ConstructMe_particlesphere_ps20b;
|
||||
Reference in New Issue
Block a user