mirror of
https://github.com/Gigaslav/HL2Overcharged.git
synced 2026-01-05 06:10:21 +03:00
43 lines
743 B
C++
43 lines
743 B
C++
// ALL SKIP STATEMENTS THAT AFFECT THIS SHADER!!!
|
|
// defined $LIGHTING_PREVIEW && defined $FASTPATH && $LIGHTING_PREVIEW && $FASTPATH
|
|
|
|
#ifndef EYEGLINT_VS20_H
|
|
#define EYEGLINT_VS20_H
|
|
|
|
#include "shaderapi/ishaderapi.h"
|
|
#include "shaderapi/ishadershadow.h"
|
|
#include "materialsystem/imaterialvar.h"
|
|
|
|
class eyeglint_vs20_Static_Index
|
|
{
|
|
public:
|
|
eyeglint_vs20_Static_Index( IShaderShadow* pShaderShadow, IMaterialVar** params )
|
|
{
|
|
}
|
|
|
|
int GetIndex() const
|
|
{
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
#define shaderStaticTest_eyeglint_vs20 1
|
|
|
|
|
|
class eyeglint_vs20_Dynamic_Index
|
|
{
|
|
public:
|
|
eyeglint_vs20_Dynamic_Index( IShaderDynamicAPI* pShaderAPI )
|
|
{
|
|
}
|
|
|
|
int GetIndex() const
|
|
{
|
|
return 0;
|
|
}
|
|
};
|
|
|
|
#define shaderDynamicTest_eyeglint_vs20 1
|
|
|
|
|
|
#endif // EYEGLINT_VS20_H
|