core_cpp_constexpr.cpp 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294
  1. #include <glm/glm.hpp>
  2. #if GLM_USE_CONSTEXP == GLM_ENABLE
  3. #include <glm/gtc/constants.hpp>
  4. #include <glm/gtc/quaternion.hpp>
  5. #include <glm/ext/vector_relational.hpp>
  6. #include <glm/ext/vec1.hpp>
  7. static int test_vec1()
  8. {
  9. int Error = 0;
  10. {
  11. constexpr glm::ivec1 O(glm::ivec1(1));
  12. static_assert(glm::ivec1(1) == O, "GLM: Failed constexpr");
  13. constexpr glm::ivec1 P(1);
  14. static_assert(glm::ivec1(1) == P, "GLM: Failed constexpr");
  15. }
  16. {
  17. constexpr glm::ivec1 L(glm::ivec2(1, 2));
  18. static_assert(glm::ivec1(1) == L, "GLM: Failed constexpr");
  19. constexpr glm::ivec1 M(glm::ivec3(1, 2, 3));
  20. static_assert(glm::ivec1(1) == M, "GLM: Failed constexpr");
  21. constexpr glm::ivec1 N(glm::ivec4(1, 2, 3, 4));
  22. static_assert(glm::ivec1(1) == N, "GLM: Failed constexpr");
  23. }
  24. {
  25. constexpr glm::ivec1 A(1);
  26. static_assert(A[0] == 1, "GLM: Failed constexpr");
  27. static_assert(glm::vec1(1.0f).x > 0.0f, "GLM: Failed constexpr");
  28. static_assert(glm::vec1::length() == 1, "GLM: Failed constexpr");
  29. }
  30. {
  31. constexpr glm::bvec1 A1(true);
  32. constexpr glm::bvec1 A2(true);
  33. constexpr glm::bvec1 B1(false);
  34. constexpr glm::bvec1 B2(false);
  35. static_assert(A1 == A2 && B1 == B2, "GLM: Failed constexpr");
  36. static_assert(A1 == A2 || B1 == B2, "GLM: Failed constexpr");
  37. }
  38. return Error;
  39. }
  40. static int test_vec2()
  41. {
  42. int Error = 0;
  43. {
  44. constexpr glm::ivec2 O(glm::ivec1(1));
  45. static_assert(glm::ivec2(1) == O, "GLM: Failed constexpr");
  46. constexpr glm::ivec2 A(1);
  47. static_assert(glm::ivec2(1) == A, "GLM: Failed constexpr");
  48. }
  49. {
  50. constexpr glm::ivec2 F(glm::ivec1(1), glm::ivec1(2));
  51. static_assert(glm::ivec2(1, 2) == F, "GLM: Failed constexpr");
  52. constexpr glm::ivec2 G(1, glm::ivec1(2));
  53. static_assert(glm::ivec2(1, 2) == G, "GLM: Failed constexpr");
  54. constexpr glm::ivec2 H(glm::ivec1(1), 2);
  55. static_assert(glm::ivec2(1, 2) == H, "GLM: Failed constexpr");
  56. constexpr glm::ivec2 I(1, 2);
  57. static_assert(glm::ivec2(1, 2) == I, "GLM: Failed constexpr");
  58. }
  59. {
  60. constexpr glm::ivec2 L(glm::ivec2(1, 2));
  61. static_assert(glm::ivec2(1, 2) == L, "GLM: Failed constexpr");
  62. constexpr glm::ivec2 M(glm::ivec3(1, 2, 3));
  63. static_assert(glm::ivec2(1, 2) == M, "GLM: Failed constexpr");
  64. constexpr glm::ivec2 N(glm::ivec4(1, 2, 3, 4));
  65. static_assert(glm::ivec2(1, 2) == N, "GLM: Failed constexpr");
  66. }
  67. {
  68. constexpr glm::ivec2 A(1);
  69. static_assert(A[0] == 1, "GLM: Failed constexpr");
  70. static_assert(glm::vec2(1.0f).x > 0.0f, "GLM: Failed constexpr");
  71. static_assert(glm::vec2(1.0f, -1.0f).x > 0.0f, "GLM: Failed constexpr");
  72. static_assert(glm::vec2(1.0f, -1.0f).y < 0.0f, "GLM: Failed constexpr");
  73. static_assert(glm::vec2::length() == 2, "GLM: Failed constexpr");
  74. }
  75. {
  76. constexpr glm::bvec2 A1(true);
  77. constexpr glm::bvec2 A2(true);
  78. constexpr glm::bvec2 B1(false);
  79. constexpr glm::bvec2 B2(false);
  80. static_assert(A1 == A2 && B1 == B2, "GLM: Failed constexpr");
  81. static_assert(A1 == A2 || B1 == B2, "GLM: Failed constexpr");
  82. }
  83. {
  84. constexpr glm::ivec2 A(1);
  85. constexpr glm::ivec2 B = A + 1;
  86. constexpr glm::ivec2 C(3);
  87. static_assert(A + B == C, "GLM: Failed constexpr");
  88. }
  89. return Error;
  90. }
  91. static int test_vec3()
  92. {
  93. int Error = 0;
  94. {
  95. constexpr glm::ivec3 O(glm::ivec1(1));
  96. static_assert(glm::ivec3(1) == O, "GLM: Failed constexpr");
  97. constexpr glm::ivec3 A(1);
  98. static_assert(glm::ivec3(1) == A, "GLM: Failed constexpr");
  99. }
  100. {
  101. constexpr glm::ivec3 B(glm::ivec2(1, 2), 3);
  102. static_assert(glm::ivec3(1, 2, 3) == B, "GLM: Failed constexpr");
  103. constexpr glm::ivec3 C(1, glm::ivec2(2, 3));
  104. static_assert(glm::ivec3(1, 2, 3) == C, "GLM: Failed constexpr");
  105. constexpr glm::ivec3 D(glm::ivec1(1), glm::ivec2(2, 3));
  106. static_assert(glm::ivec3(1, 2, 3) == D, "GLM: Failed constexpr");
  107. constexpr glm::ivec3 E(glm::ivec2(1, 2), glm::ivec1(3));
  108. static_assert(glm::ivec3(1, 2, 3) == E, "GLM: Failed constexpr");
  109. }
  110. {
  111. constexpr glm::ivec3 F(glm::ivec1(1), glm::ivec1(2), glm::ivec1(3));
  112. static_assert(glm::ivec3(1, 2, 3) == F, "GLM: Failed constexpr");
  113. constexpr glm::ivec3 G(1, glm::ivec1(2), glm::ivec1(3));
  114. static_assert(glm::ivec3(1, 2, 3) == G, "GLM: Failed constexpr");
  115. constexpr glm::ivec3 H(glm::ivec1(1), 2, glm::ivec1(3));
  116. static_assert(glm::ivec3(1, 2, 3) == H, "GLM: Failed constexpr");
  117. constexpr glm::ivec3 I(1, 2, glm::ivec1(3));
  118. static_assert(glm::ivec3(1, 2, 3) == I, "GLM: Failed constexpr");
  119. constexpr glm::ivec3 J(glm::ivec1(1), glm::ivec1(2), 3);
  120. static_assert(glm::ivec3(1, 2, 3) == J, "GLM: Failed constexpr");
  121. constexpr glm::ivec3 K(1, glm::ivec1(2), 3);
  122. static_assert(glm::ivec3(1, 2, 3) == K, "GLM: Failed constexpr");
  123. constexpr glm::ivec3 L(glm::ivec1(1), 2, 3);
  124. static_assert(glm::ivec3(1, 2, 3) == L, "GLM: Failed constexpr");
  125. constexpr glm::ivec3 M(1, 2, 3);
  126. static_assert(glm::ivec3(1, 2, 3) == M, "GLM: Failed constexpr");
  127. }
  128. {
  129. constexpr glm::ivec3 N(glm::ivec4(1, 2, 3, 4));
  130. static_assert(glm::ivec3(1, 2, 3) == N, "GLM: Failed constexpr");
  131. }
  132. {
  133. constexpr glm::ivec3 const A(1);
  134. static_assert(A[0] == 1, "GLM: Failed constexpr");
  135. static_assert(glm::vec3(1.0f).x > 0.0f, "GLM: Failed constexpr");
  136. static_assert(glm::vec3(1.0f, -1.0f, -1.0f).x > 0.0f, "GLM: Failed constexpr");
  137. static_assert(glm::vec3(1.0f, -1.0f, -1.0f).y < 0.0f, "GLM: Failed constexpr");
  138. static_assert(glm::vec3::length() == 3, "GLM: Failed constexpr");
  139. }
  140. {
  141. constexpr glm::bvec3 A1(true);
  142. constexpr glm::bvec3 A2(true);
  143. constexpr glm::bvec3 B1(false);
  144. constexpr glm::bvec3 B2(false);
  145. static_assert(A1 == A2 && B1 == B2, "GLM: Failed constexpr");
  146. static_assert(A1 == A2 || B1 == B2, "GLM: Failed constexpr");
  147. }
  148. return Error;
  149. }
  150. static int test_vec4()
  151. {
  152. int Error = 0;
  153. {
  154. constexpr glm::ivec4 O(glm::ivec4(1));
  155. static_assert(glm::ivec4(1) == O, "GLM: Failed constexpr");
  156. constexpr glm::ivec4 A(1);
  157. static_assert(glm::ivec4(1) == A, "GLM: Failed constexpr");
  158. constexpr glm::ivec4 N(glm::ivec4(1, 2, 3, 4));
  159. static_assert(glm::ivec4(1, 2, 3, 4) == N, "GLM: Failed constexpr");
  160. }
  161. {
  162. constexpr glm::ivec4 A(glm::ivec3(1, 2, 3), 4);
  163. static_assert(glm::ivec4(1, 2, 3, 4) == A, "GLM: Failed constexpr");
  164. constexpr glm::ivec4 B(glm::ivec2(1, 2), glm::ivec2(3, 4));
  165. static_assert(glm::ivec4(1, 2, 3, 4) == B, "GLM: Failed constexpr");
  166. constexpr glm::ivec4 C(1, glm::ivec3(2, 3, 4));
  167. static_assert(glm::ivec4(1, 2, 3, 4) == C, "GLM: Failed constexpr");
  168. constexpr glm::ivec4 D(glm::ivec1(1), glm::ivec2(2, 3), glm::ivec1(4));
  169. static_assert(glm::ivec4(1, 2, 3, 4) == D, "GLM: Failed constexpr");
  170. constexpr glm::ivec4 E(glm::ivec2(1, 2), glm::ivec1(3), glm::ivec1(4));
  171. static_assert(glm::ivec4(1, 2, 3, 4) == E, "GLM: Failed constexpr");
  172. constexpr glm::ivec4 F(glm::ivec1(1), glm::ivec1(2), glm::ivec2(3, 4));
  173. static_assert(glm::ivec4(1, 2, 3, 4) == F, "GLM: Failed constexpr");
  174. }
  175. {
  176. constexpr glm::ivec4 A(1);
  177. static_assert(A[0] == 1, "GLM: Failed constexpr");
  178. static_assert(glm::ivec4(1).x > 0, "GLM: Failed constexpr");
  179. static_assert(glm::ivec4(1.0f, -1.0f, -1.0f, 1.0f).x > 0, "GLM: Failed constexpr");
  180. static_assert(glm::ivec4(1.0f, -1.0f, -1.0f, 1.0f).y < 0, "GLM: Failed constexpr");
  181. static_assert(glm::ivec4::length() == 4, "GLM: Failed constexpr");
  182. }
  183. {
  184. constexpr glm::bvec4 A1(true);
  185. constexpr glm::bvec4 A2(true);
  186. constexpr glm::bvec4 B1(false);
  187. constexpr glm::bvec4 B2(false);
  188. static_assert(A1 == A2 && B1 == B2, "GLM: Failed constexpr");
  189. static_assert(A1 == A2 || B1 == B2, "GLM: Failed constexpr");
  190. }
  191. return Error;
  192. }
  193. static int test_quat()
  194. {
  195. int Error = 0;
  196. {
  197. static_assert(glm::quat::length() == 4, "GLM: Failed constexpr");
  198. static_assert(glm::quat(1.0f, glm::vec3(0.0f)).w > 0.0f, "GLM: Failed constexpr");
  199. static_assert(glm::quat(1.0f, 0.0f, 0.0f, 0.0f).w > 0.0f, "GLM: Failed constexpr");
  200. glm::quat constexpr Q = glm::identity<glm::quat>();
  201. static_assert(Q.x - glm::quat(1.0f, glm::vec3(0.0f)).x <= glm::epsilon<float>(), "GLM: Failed constexpr");
  202. static_assert(Q[0] == 0, "GLM: Failed constexpr");
  203. }
  204. return Error;
  205. }
  206. static int test_mat2x2()
  207. {
  208. int Error = 0;
  209. static_assert(glm::mat2x2::length() == 2, "GLM: Failed constexpr");
  210. return Error;
  211. }
  212. #endif//GLM_USE_CONSTEXP == GLM_ENABLE
  213. int main()
  214. {
  215. int Error = 0;
  216. # if GLM_USE_CONSTEXP == GLM_ENABLE
  217. Error += test_vec1();
  218. Error += test_vec2();
  219. Error += test_vec3();
  220. Error += test_vec4();
  221. Error += test_quat();
  222. Error += test_mat2x2();
  223. # endif//GLM_USE_CONSTEXP == GLM_ENABLE
  224. return Error;
  225. }