summaryrefslogtreecommitdiff
path: root/materialsystem/stdshaders/fxctmp9_360/portalstaticoverlay_ps11.inc
diff options
context:
space:
mode:
authorFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
committerFluorescentCIAAfricanAmerican <[email protected]>2020-04-22 12:56:21 -0400
commit3bf9df6b2785fa6d951086978a3e66f49427166a (patch)
tree2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /materialsystem/stdshaders/fxctmp9_360/portalstaticoverlay_ps11.inc
downloadarchived-source-engine-2018-hl2-src-master.tar.xz
archived-source-engine-2018-hl2-src-master.zip
Diffstat (limited to 'materialsystem/stdshaders/fxctmp9_360/portalstaticoverlay_ps11.inc')
-rw-r--r--materialsystem/stdshaders/fxctmp9_360/portalstaticoverlay_ps11.inc137
1 files changed, 137 insertions, 0 deletions
diff --git a/materialsystem/stdshaders/fxctmp9_360/portalstaticoverlay_ps11.inc b/materialsystem/stdshaders/fxctmp9_360/portalstaticoverlay_ps11.inc
new file mode 100644
index 0000000..7b7eb8f
--- /dev/null
+++ b/materialsystem/stdshaders/fxctmp9_360/portalstaticoverlay_ps11.inc
@@ -0,0 +1,137 @@
+#include "shaderlib/cshader.h"
+class portalstaticoverlay_ps11_Static_Index
+{
+private:
+ int m_nHASALPHAMASK;
+#ifdef _DEBUG
+ bool m_bHASALPHAMASK;
+#endif
+public:
+ void SetHASALPHAMASK( int i )
+ {
+ Assert( i >= 0 && i <= 1 );
+ m_nHASALPHAMASK = i;
+#ifdef _DEBUG
+ m_bHASALPHAMASK = true;
+#endif
+ }
+ void SetHASALPHAMASK( bool i )
+ {
+ m_nHASALPHAMASK = i ? 1 : 0;
+#ifdef _DEBUG
+ m_bHASALPHAMASK = true;
+#endif
+ }
+private:
+ int m_nHASSTATICTEXTURE;
+#ifdef _DEBUG
+ bool m_bHASSTATICTEXTURE;
+#endif
+public:
+ void SetHASSTATICTEXTURE( int i )
+ {
+ Assert( i >= 0 && i <= 1 );
+ m_nHASSTATICTEXTURE = i;
+#ifdef _DEBUG
+ m_bHASSTATICTEXTURE = true;
+#endif
+ }
+ void SetHASSTATICTEXTURE( bool i )
+ {
+ m_nHASSTATICTEXTURE = i ? 1 : 0;
+#ifdef _DEBUG
+ m_bHASSTATICTEXTURE = true;
+#endif
+ }
+public:
+ portalstaticoverlay_ps11_Static_Index( )
+ {
+#ifdef _DEBUG
+ m_bHASALPHAMASK = false;
+#endif // _DEBUG
+ m_nHASALPHAMASK = 0;
+#ifdef _DEBUG
+ m_bHASSTATICTEXTURE = false;
+#endif // _DEBUG
+ m_nHASSTATICTEXTURE = 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_bHASALPHAMASK && m_bHASSTATICTEXTURE;
+ Assert( bAllStaticVarsDefined );
+#endif // _DEBUG
+ return ( 4 * m_nHASALPHAMASK ) + ( 8 * m_nHASSTATICTEXTURE ) + 0;
+ }
+};
+#define shaderStaticTest_portalstaticoverlay_ps11 psh_forgot_to_set_static_HASALPHAMASK + psh_forgot_to_set_static_HASSTATICTEXTURE + 0
+class portalstaticoverlay_ps11_Dynamic_Index
+{
+private:
+ int m_nHDRENABLED;
+#ifdef _DEBUG
+ bool m_bHDRENABLED;
+#endif
+public:
+ void SetHDRENABLED( int i )
+ {
+ Assert( i >= 0 && i <= 1 );
+ m_nHDRENABLED = i;
+#ifdef _DEBUG
+ m_bHDRENABLED = true;
+#endif
+ }
+ void SetHDRENABLED( bool i )
+ {
+ m_nHDRENABLED = i ? 1 : 0;
+#ifdef _DEBUG
+ m_bHDRENABLED = true;
+#endif
+ }
+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 )
+ {
+ m_nPIXELFOGTYPE = i ? 1 : 0;
+#ifdef _DEBUG
+ m_bPIXELFOGTYPE = true;
+#endif
+ }
+public:
+ portalstaticoverlay_ps11_Dynamic_Index()
+ {
+#ifdef _DEBUG
+ m_bHDRENABLED = false;
+#endif // _DEBUG
+ m_nHDRENABLED = 0;
+#ifdef _DEBUG
+ m_bPIXELFOGTYPE = false;
+#endif // _DEBUG
+ m_nPIXELFOGTYPE = 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 bAllDynamicVarsDefined = m_bHDRENABLED && m_bPIXELFOGTYPE;
+ Assert( bAllDynamicVarsDefined );
+#endif // _DEBUG
+ return ( 1 * m_nHDRENABLED ) + ( 2 * m_nPIXELFOGTYPE ) + 0;
+ }
+};
+#define shaderDynamicTest_portalstaticoverlay_ps11 psh_forgot_to_set_dynamic_HDRENABLED + psh_forgot_to_set_dynamic_PIXELFOGTYPE + 0