Team Fortress 2 Source Code as on 22/4/2020
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.

137 lines
2.8 KiB

  1. #include "shaderlib/cshader.h"
  2. class portal_refract_ps20b_Static_Index
  3. {
  4. private:
  5. int m_nCONVERT_TO_SRGB;
  6. #ifdef _DEBUG
  7. bool m_bCONVERT_TO_SRGB;
  8. #endif
  9. public:
  10. void SetCONVERT_TO_SRGB( int i )
  11. {
  12. Assert( i >= 0 && i <= 1 );
  13. m_nCONVERT_TO_SRGB = i;
  14. #ifdef _DEBUG
  15. m_bCONVERT_TO_SRGB = true;
  16. #endif
  17. }
  18. void SetCONVERT_TO_SRGB( bool i )
  19. {
  20. m_nCONVERT_TO_SRGB = i ? 1 : 0;
  21. #ifdef _DEBUG
  22. m_bCONVERT_TO_SRGB = true;
  23. #endif
  24. }
  25. private:
  26. int m_nSTAGE;
  27. #ifdef _DEBUG
  28. bool m_bSTAGE;
  29. #endif
  30. public:
  31. void SetSTAGE( int i )
  32. {
  33. Assert( i >= 0 && i <= 2 );
  34. m_nSTAGE = i;
  35. #ifdef _DEBUG
  36. m_bSTAGE = true;
  37. #endif
  38. }
  39. void SetSTAGE( bool i )
  40. {
  41. m_nSTAGE = i ? 1 : 0;
  42. #ifdef _DEBUG
  43. m_bSTAGE = true;
  44. #endif
  45. }
  46. private:
  47. int m_nSHADER_SRGB_READ;
  48. #ifdef _DEBUG
  49. bool m_bSHADER_SRGB_READ;
  50. #endif
  51. public:
  52. void SetSHADER_SRGB_READ( int i )
  53. {
  54. Assert( i >= 0 && i <= 1 );
  55. m_nSHADER_SRGB_READ = i;
  56. #ifdef _DEBUG
  57. m_bSHADER_SRGB_READ = true;
  58. #endif
  59. }
  60. void SetSHADER_SRGB_READ( bool i )
  61. {
  62. m_nSHADER_SRGB_READ = i ? 1 : 0;
  63. #ifdef _DEBUG
  64. m_bSHADER_SRGB_READ = true;
  65. #endif
  66. }
  67. public:
  68. portal_refract_ps20b_Static_Index( )
  69. {
  70. #ifdef _DEBUG
  71. m_bCONVERT_TO_SRGB = true;
  72. #endif // _DEBUG
  73. m_nCONVERT_TO_SRGB = g_pHardwareConfig->NeedsShaderSRGBConversion();
  74. #ifdef _DEBUG
  75. m_bSTAGE = false;
  76. #endif // _DEBUG
  77. m_nSTAGE = 0;
  78. #ifdef _DEBUG
  79. m_bSHADER_SRGB_READ = false;
  80. #endif // _DEBUG
  81. m_nSHADER_SRGB_READ = 0;
  82. }
  83. int GetIndex()
  84. {
  85. // Asserts to make sure that we aren't using any skipped combinations.
  86. // Asserts to make sure that we are setting all of the combination vars.
  87. #ifdef _DEBUG
  88. bool bAllStaticVarsDefined = m_bCONVERT_TO_SRGB && m_bSTAGE && m_bSHADER_SRGB_READ;
  89. Assert( bAllStaticVarsDefined );
  90. #endif // _DEBUG
  91. return ( 2 * m_nCONVERT_TO_SRGB ) + ( 4 * m_nSTAGE ) + ( 12 * m_nSHADER_SRGB_READ ) + 0;
  92. }
  93. };
  94. #define shaderStaticTest_portal_refract_ps20b psh_forgot_to_set_static_STAGE + psh_forgot_to_set_static_SHADER_SRGB_READ + 0
  95. class portal_refract_ps20b_Dynamic_Index
  96. {
  97. private:
  98. int m_nPIXELFOGTYPE;
  99. #ifdef _DEBUG
  100. bool m_bPIXELFOGTYPE;
  101. #endif
  102. public:
  103. void SetPIXELFOGTYPE( int i )
  104. {
  105. Assert( i >= 0 && i <= 1 );
  106. m_nPIXELFOGTYPE = i;
  107. #ifdef _DEBUG
  108. m_bPIXELFOGTYPE = true;
  109. #endif
  110. }
  111. void SetPIXELFOGTYPE( bool i )
  112. {
  113. m_nPIXELFOGTYPE = i ? 1 : 0;
  114. #ifdef _DEBUG
  115. m_bPIXELFOGTYPE = true;
  116. #endif
  117. }
  118. public:
  119. portal_refract_ps20b_Dynamic_Index()
  120. {
  121. #ifdef _DEBUG
  122. m_bPIXELFOGTYPE = false;
  123. #endif // _DEBUG
  124. m_nPIXELFOGTYPE = 0;
  125. }
  126. int GetIndex()
  127. {
  128. // Asserts to make sure that we aren't using any skipped combinations.
  129. // Asserts to make sure that we are setting all of the combination vars.
  130. #ifdef _DEBUG
  131. bool bAllDynamicVarsDefined = m_bPIXELFOGTYPE;
  132. Assert( bAllDynamicVarsDefined );
  133. #endif // _DEBUG
  134. return ( 1 * m_nPIXELFOGTYPE ) + 0;
  135. }
  136. };
  137. #define shaderDynamicTest_portal_refract_ps20b psh_forgot_to_set_dynamic_PIXELFOGTYPE + 0