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.

110 lines
2.2 KiB

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