#include #include #include #include #include #include namespace isPowerOfTwo { template struct type { genType Value; bool Return; }; int test_int16() { type const Data[] = { { 0x0001, true }, { 0x0002, true }, { 0x0004, true }, { 0x0080, true }, { 0x0000, true }, { 0x0003, false } }; int Error = 0; for (std::size_t i = 0, n = sizeof(Data) / sizeof(type); i < n; ++i) { bool Result = glm::isPowerOfTwo(Data[i].Value); Error += Data[i].Return == Result ? 0 : 1; } return Error; } int test_uint16() { type const Data[] = { { 0x0001, true }, { 0x0002, true }, { 0x0004, true }, { 0x0000, true }, { 0x0000, true }, { 0x0003, false } }; int Error = 0; for (std::size_t i = 0, n = sizeof(Data) / sizeof(type); i < n; ++i) { bool Result = glm::isPowerOfTwo(Data[i].Value); Error += Data[i].Return == Result ? 0 : 1; } return Error; } int test_int32() { type const Data[] = { { 0x00000001, true }, { 0x00000002, true }, { 0x00000004, true }, { 0x0000000f, false }, { 0x00000000, true }, { 0x00000003, false } }; int Error = 0; for (std::size_t i = 0, n = sizeof(Data) / sizeof(type); i < n; ++i) { bool Result = glm::isPowerOfTwo(Data[i].Value); Error += Data[i].Return == Result ? 0 : 1; } return Error; } int test_uint32() { type const Data[] = { { 0x00000001, true }, { 0x00000002, true }, { 0x00000004, true }, { 0x80000000, true }, { 0x00000000, true }, { 0x00000003, false } }; int Error = 0; for (std::size_t i = 0, n = sizeof(Data) / sizeof(type); i < n; ++i) { bool Result = glm::isPowerOfTwo(Data[i].Value); Error += Data[i].Return == Result ? 0 : 1; } return Error; } int test() { int Error = 0; Error += test_int16(); Error += test_uint16(); Error += test_int32(); Error += test_uint32(); return Error; } }//isPowerOfTwo namespace prevPowerOfTwo { template int run() { int Error = 0; T const A = glm::prevPowerOfTwo(static_cast(7)); Error += A == static_cast(4) ? 0 : 1; T const B = glm::prevPowerOfTwo(static_cast(15)); Error += B == static_cast(8) ? 0 : 1; T const C = glm::prevPowerOfTwo(static_cast(31)); Error += C == static_cast(16) ? 0 : 1; T const D = glm::prevPowerOfTwo(static_cast(32)); Error += D == static_cast(32) ? 0 : 1; return Error; } int test() { int Error = 0; Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); return Error; } }//namespace prevPowerOfTwo namespace nextPowerOfTwo { template int run() { int Error = 0; T const A = glm::nextPowerOfTwo(static_cast(7)); Error += A == static_cast(8) ? 0 : 1; T const B = glm::nextPowerOfTwo(static_cast(15)); Error += B == static_cast(16) ? 0 : 1; T const C = glm::nextPowerOfTwo(static_cast(31)); Error += C == static_cast(32) ? 0 : 1; T const D = glm::nextPowerOfTwo(static_cast(32)); Error += D == static_cast(32) ? 0 : 1; return Error; } int test() { int Error = 0; Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); return Error; } }//namespace nextPowerOfTwo namespace prevMultiple { template struct type { genIUType Source; genIUType Multiple; genIUType Return; }; template int run() { type const Data[] = { { 8, 3, 6 }, { 7, 7, 7 } }; int Error = 0; for (std::size_t i = 0, n = sizeof(Data) / sizeof(type); i < n; ++i) { glm::vec<4, T> const Result = glm::prevMultiple(glm::vec<4, T>(Data[i].Source), Data[i].Multiple); Error += glm::vec<4, T>(Data[i].Return) == Result ? 0 : 1; } return Error; } int test() { int Error = 0; Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); return Error; } }//namespace prevMultiple namespace nextMultiple { template struct type { genIUType Source; genIUType Multiple; genIUType Return; }; template int run() { type const Data[] = { { 8, 3, 6 }, { 7, 7, 7 } }; int Error = 0; for (std::size_t i = 0, n = sizeof(Data) / sizeof(type); i < n; ++i) { glm::vec<4, T> const Result = glm::nextMultiple(glm::vec<4, T>(Data[i].Source), Data[i].Multiple); Error += glm::vec<4, T>(Data[i].Return) == Result ? 0 : 1; } return Error; } int test() { int Error = 0; Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); Error += run(); return Error; } }//namespace nextMultiple int main() { int Error = 0; Error += isPowerOfTwo::test(); Error += prevPowerOfTwo::test(); Error += nextPowerOfTwo::test(); Error += prevMultiple::test(); Error += nextMultiple::test(); return Error; }