| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- #define GLM_FORCE_SWIZZLE
- #include <glm/vector_relational.hpp>
- #include <glm/gtc/vec1.hpp>
- #include <vector>
- #if GLM_COMPILER & GLM_COMPILER_CLANG
- # pragma clang diagnostic push
- # pragma clang diagnostic ignored "-Wglobal-constructors"
- # pragma clang diagnostic ignored "-Wunused-variable"
- #endif
- static glm::vec1 g1;
- static glm::vec1 g2(1);
- #if GLM_COMPILER & GLM_COMPILER_CLANG
- # pragma clang diagnostic pop
- #endif
- static int test_vec1_operators()
- {
- int Error(0);
- glm::ivec1 A(1);
- glm::ivec1 B(1);
- {
- bool R = A != B;
- bool S = A == B;
- Error += (S && !R) ? 0 : 1;
- }
- {
- A *= 1;
- B *= 1;
- A += 1;
- B += 1;
- bool R = A != B;
- bool S = A == B;
- Error += (S && !R) ? 0 : 1;
- }
- return Error;
- }
- static int test_vec1_ctor()
- {
- int Error = 0;
- {
- // Error += std::is_trivially_default_constructible<glm::vec1>::value ? 0 : 1;
- // Error += std::is_trivially_copy_assignable<glm::vec1>::value ? 0 : 1;
- Error += std::is_trivially_copyable<glm::vec1>::value ? 0 : 1;
- Error += std::is_trivially_copyable<glm::dvec1>::value ? 0 : 1;
- Error += std::is_trivially_copyable<glm::ivec1>::value ? 0 : 1;
- Error += std::is_trivially_copyable<glm::uvec1>::value ? 0 : 1;
- Error += std::is_copy_constructible<glm::vec1>::value ? 0 : 1;
- }
- {
- glm::ivec1 A = glm::vec1(2.0f);
- glm::ivec1 E(glm::dvec1(2.0));
- Error += A == E ? 0 : 1;
- glm::ivec1 F(glm::ivec1(2));
- Error += A == F ? 0 : 1;
- }
- return Error;
- }
- static int test_vec1_size()
- {
- int Error = 0;
- Error += sizeof(glm::vec1) == sizeof(glm::mediump_vec1) ? 0 : 1;
- Error += 4 == sizeof(glm::mediump_vec1) ? 0 : 1;
- Error += sizeof(glm::dvec1) == sizeof(glm::highp_dvec1) ? 0 : 1;
- Error += 8 == sizeof(glm::highp_dvec1) ? 0 : 1;
- Error += glm::vec1().length() == 1 ? 0 : 1;
- Error += glm::dvec1().length() == 1 ? 0 : 1;
- Error += glm::vec1::length() == 1 ? 0 : 1;
- Error += glm::dvec1::length() == 1 ? 0 : 1;
- GLM_CONSTEXPR glm::length_t Length = glm::vec1::length();
- Error += Length == 1 ? 0 : 1;
- return Error;
- }
- static int test_vec1_operator_increment()
- {
- int Error(0);
- glm::ivec1 v0(1);
- glm::ivec1 v1(v0);
- glm::ivec1 v2(v0);
- glm::ivec1 v3 = ++v1;
- glm::ivec1 v4 = v2++;
- Error += glm::all(glm::equal(v0, v4)) ? 0 : 1;
- Error += glm::all(glm::equal(v1, v2)) ? 0 : 1;
- Error += glm::all(glm::equal(v1, v3)) ? 0 : 1;
- int i0(1);
- int i1(i0);
- int i2(i0);
- int i3 = ++i1;
- int i4 = i2++;
- Error += i0 == i4 ? 0 : 1;
- Error += i1 == i2 ? 0 : 1;
- Error += i1 == i3 ? 0 : 1;
- return Error;
- }
- static int test_bvec1_ctor()
- {
- int Error = 0;
- glm::bvec1 A(true);
- glm::bvec1 B(true);
- glm::bvec1 C(false);
- glm::bvec1 D = A && B;
- glm::bvec1 E = A && C;
- glm::bvec1 F = A || C;
- Error += D == glm::bvec1(true) ? 0 : 1;
- Error += E == glm::bvec1(false) ? 0 : 1;
- Error += F == glm::bvec1(true) ? 0 : 1;
- bool G = A == C;
- bool H = A != C;
- Error += !G ? 0 : 1;
- Error += H ? 0 : 1;
- return Error;
- }
- int main()
- {
- // Suppress unused variable warnings
- (void)g1;
- (void)g2;
- int Error = 0;
- Error += test_vec1_size();
- Error += test_vec1_ctor();
- Error += test_bvec1_ctor();
- Error += test_vec1_operators();
- Error += test_vec1_operator_increment();
-
- return Error;
- }
|