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.

112 lines
2.1 KiB

  1. #include "shaderlib/cshader.h"
  2. class sprite_vs20_Static_Index
  3. {
  4. private:
  5. int m_nVERTEXCOLOR;
  6. #ifdef _DEBUG
  7. bool m_bVERTEXCOLOR;
  8. #endif
  9. public:
  10. void SetVERTEXCOLOR( int i )
  11. {
  12. Assert( i >= 0 && i <= 1 );
  13. m_nVERTEXCOLOR = i;
  14. #ifdef _DEBUG
  15. m_bVERTEXCOLOR = true;
  16. #endif
  17. }
  18. void SetVERTEXCOLOR( bool i )
  19. {
  20. m_nVERTEXCOLOR = i ? 1 : 0;
  21. #ifdef _DEBUG
  22. m_bVERTEXCOLOR = true;
  23. #endif
  24. }
  25. private:
  26. int m_nSRGB;
  27. #ifdef _DEBUG
  28. bool m_bSRGB;
  29. #endif
  30. public:
  31. void SetSRGB( int i )
  32. {
  33. Assert( i >= 0 && i <= 1 );
  34. m_nSRGB = i;
  35. #ifdef _DEBUG
  36. m_bSRGB = true;
  37. #endif
  38. }
  39. void SetSRGB( bool i )
  40. {
  41. m_nSRGB = i ? 1 : 0;
  42. #ifdef _DEBUG
  43. m_bSRGB = true;
  44. #endif
  45. }
  46. public:
  47. sprite_vs20_Static_Index( )
  48. {
  49. #ifdef _DEBUG
  50. m_bVERTEXCOLOR = false;
  51. #endif // _DEBUG
  52. m_nVERTEXCOLOR = 0;
  53. #ifdef _DEBUG
  54. m_bSRGB = false;
  55. #endif // _DEBUG
  56. m_nSRGB = 0;
  57. }
  58. int GetIndex()
  59. {
  60. // Asserts to make sure that we aren't using any skipped combinations.
  61. // Asserts to make sure that we are setting all of the combination vars.
  62. #ifdef _DEBUG
  63. bool bAllStaticVarsDefined = m_bVERTEXCOLOR && m_bSRGB;
  64. Assert( bAllStaticVarsDefined );
  65. #endif // _DEBUG
  66. return ( 2 * m_nVERTEXCOLOR ) + ( 4 * m_nSRGB ) + 0;
  67. }
  68. };
  69. #define shaderStaticTest_sprite_vs20 vsh_forgot_to_set_static_VERTEXCOLOR + vsh_forgot_to_set_static_SRGB + 0
  70. class sprite_vs20_Dynamic_Index
  71. {
  72. private:
  73. int m_nDOWATERFOG;
  74. #ifdef _DEBUG
  75. bool m_bDOWATERFOG;
  76. #endif
  77. public:
  78. void SetDOWATERFOG( int i )
  79. {
  80. Assert( i >= 0 && i <= 1 );
  81. m_nDOWATERFOG = i;
  82. #ifdef _DEBUG
  83. m_bDOWATERFOG = true;
  84. #endif
  85. }
  86. void SetDOWATERFOG( bool i )
  87. {
  88. m_nDOWATERFOG = i ? 1 : 0;
  89. #ifdef _DEBUG
  90. m_bDOWATERFOG = true;
  91. #endif
  92. }
  93. public:
  94. sprite_vs20_Dynamic_Index()
  95. {
  96. #ifdef _DEBUG
  97. m_bDOWATERFOG = false;
  98. #endif // _DEBUG
  99. m_nDOWATERFOG = 0;
  100. }
  101. int GetIndex()
  102. {
  103. // Asserts to make sure that we aren't using any skipped combinations.
  104. // Asserts to make sure that we are setting all of the combination vars.
  105. #ifdef _DEBUG
  106. bool bAllDynamicVarsDefined = m_bDOWATERFOG;
  107. Assert( bAllDynamicVarsDefined );
  108. #endif // _DEBUG
  109. return ( 1 * m_nDOWATERFOG ) + 0;
  110. }
  111. };
  112. #define shaderDynamicTest_sprite_vs20 vsh_forgot_to_set_dynamic_DOWATERFOG + 0