Counter Strike : Global Offensive Source Code
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

122 lines
3.3 KiB

  1. // ALL SKIP STATEMENTS THAT AFFECT THIS SHADER!!!
  2. // defined $PIXELFOGTYPE && defined $WRITEWATERFOGTODESTALPHA && ( $PIXELFOGTYPE != 1 ) && $WRITEWATERFOGTODESTALPHA
  3. // defined $LIGHTING_PREVIEW && defined $FASTPATHENVMAPTINT && $LIGHTING_PREVIEW && $FASTPATHENVMAPTINT
  4. // defined $LIGHTING_PREVIEW && defined $FASTPATHENVMAPCONTRAST && $LIGHTING_PREVIEW && $FASTPATHENVMAPCONTRAST
  5. // defined $LIGHTING_PREVIEW && defined $FASTPATH && $LIGHTING_PREVIEW && $FASTPATH
  6. // ($FLASHLIGHT || $FLASHLIGHTSHADOWS) && $LIGHTING_PREVIEW
  7. #include "shaderlib/cshader.h"
  8. class introscreenspaceeffect_ps20b_Static_Index
  9. {
  10. private:
  11. int m_nLINEAR_TO_SRGB;
  12. #ifdef _DEBUG
  13. bool m_bLINEAR_TO_SRGB;
  14. #endif
  15. public:
  16. void SetLINEAR_TO_SRGB( int i )
  17. {
  18. Assert( i >= 0 && i <= 1 );
  19. m_nLINEAR_TO_SRGB = i;
  20. #ifdef _DEBUG
  21. m_bLINEAR_TO_SRGB = true;
  22. #endif
  23. }
  24. void SetLINEAR_TO_SRGB( bool i )
  25. {
  26. Assert( ( i ? 1 : 0 ) >= 0 && ( i ? 1 : 0 ) <= 1 );
  27. m_nLINEAR_TO_SRGB = i ? 1 : 0;
  28. #ifdef _DEBUG
  29. m_bLINEAR_TO_SRGB = true;
  30. #endif
  31. }
  32. public:
  33. // CONSTRUCTOR
  34. introscreenspaceeffect_ps20b_Static_Index( IShaderShadow *pShaderShadow, IMaterialVar **params )
  35. {
  36. #ifdef _DEBUG
  37. m_bLINEAR_TO_SRGB = false;
  38. #endif // _DEBUG
  39. m_nLINEAR_TO_SRGB = 0;
  40. }
  41. int GetIndex()
  42. {
  43. // Asserts to make sure that we aren't using any skipped combinations.
  44. // Asserts to make sure that we are setting all of the combination vars.
  45. #ifdef _DEBUG
  46. bool bAllStaticVarsDefined = m_bLINEAR_TO_SRGB;
  47. Assert( bAllStaticVarsDefined );
  48. #endif // _DEBUG
  49. return ( 10 * m_nLINEAR_TO_SRGB ) + 0;
  50. }
  51. };
  52. #define shaderStaticTest_introscreenspaceeffect_ps20b psh_forgot_to_set_static_LINEAR_TO_SRGB + 0
  53. class introscreenspaceeffect_ps20b_Dynamic_Index
  54. {
  55. private:
  56. int m_nMODE;
  57. #ifdef _DEBUG
  58. bool m_bMODE;
  59. #endif
  60. public:
  61. void SetMODE( int i )
  62. {
  63. Assert( i >= 0 && i <= 9 );
  64. m_nMODE = i;
  65. #ifdef _DEBUG
  66. m_bMODE = true;
  67. #endif
  68. }
  69. void SetMODE( bool i )
  70. {
  71. Assert( ( i ? 1 : 0 ) >= 0 && ( i ? 1 : 0 ) <= 9 );
  72. m_nMODE = i ? 1 : 0;
  73. #ifdef _DEBUG
  74. m_bMODE = true;
  75. #endif
  76. }
  77. public:
  78. // CONSTRUCTOR
  79. introscreenspaceeffect_ps20b_Dynamic_Index( IShaderDynamicAPI *pShaderAPI )
  80. {
  81. #ifdef _DEBUG
  82. m_bMODE = false;
  83. #endif // _DEBUG
  84. m_nMODE = 0;
  85. }
  86. int GetIndex()
  87. {
  88. // Asserts to make sure that we aren't using any skipped combinations.
  89. // Asserts to make sure that we are setting all of the combination vars.
  90. #ifdef _DEBUG
  91. bool bAllDynamicVarsDefined = m_bMODE;
  92. Assert( bAllDynamicVarsDefined );
  93. #endif // _DEBUG
  94. return ( 1 * m_nMODE ) + 0;
  95. }
  96. };
  97. #define shaderDynamicTest_introscreenspaceeffect_ps20b psh_forgot_to_set_dynamic_MODE + 0
  98. static const ShaderComboInformation_t s_DynamicComboArray_IntroScreenSpaceEffect_ps20b[1] =
  99. {
  100. { "MODE", 0, 9 },
  101. };
  102. static const ShaderComboInformation_t s_StaticComboArray_IntroScreenSpaceEffect_ps20b[1] =
  103. {
  104. { "LINEAR_TO_SRGB", 0, 1 },
  105. };
  106. static const ShaderComboSemantics_t IntroScreenSpaceEffect_ps20b_combos =
  107. {
  108. "IntroScreenSpaceEffect_ps20b", s_DynamicComboArray_IntroScreenSpaceEffect_ps20b, 1, s_StaticComboArray_IntroScreenSpaceEffect_ps20b, 1
  109. };
  110. class ConstructMe_IntroScreenSpaceEffect_ps20b
  111. {
  112. public:
  113. ConstructMe_IntroScreenSpaceEffect_ps20b()
  114. {
  115. GetShaderDLL()->AddShaderComboInformation( &IntroScreenSpaceEffect_ps20b_combos );
  116. }
  117. };
  118. static ConstructMe_IntroScreenSpaceEffect_ps20b s_ConstructMe_IntroScreenSpaceEffect_ps20b;