glm/test/gtc/gtc_packing.cpp

270 lines
6.6 KiB
C++
Raw Normal View History

2013-08-10 17:52:59 +00:00
///////////////////////////////////////////////////////////////////////////////////
/// OpenGL Mathematics (glm.g-truc.net)
///
2014-12-19 22:54:25 +00:00
/// Copyright (c) 2005 - 2015 G-Truc Creation (www.g-truc.net)
2013-08-10 17:52:59 +00:00
/// Permission is hereby granted, free of charge, to any person obtaining a copy
/// of this software and associated documentation files (the "Software"), to deal
/// in the Software without restriction, including without limitation the rights
/// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
/// copies of the Software, and to permit persons to whom the Software is
/// furnished to do so, subject to the following conditions:
///
/// The above copyright notice and this permission notice shall be included in
/// all copies or substantial portions of the Software.
///
2014-11-25 23:27:12 +00:00
/// Restrictions:
/// By making use of the Software for military purposes, you choose to make
/// a Bunny unhappy.
///
2013-08-10 17:52:59 +00:00
/// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
/// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
/// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
/// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
/// THE SOFTWARE.
///
2014-11-25 23:27:12 +00:00
/// @file test/gtc/gtc_packing.cpp
/// @date 2013-08-09 / 2014-11-25
2013-08-10 17:52:59 +00:00
/// @author Christophe Riccio
///////////////////////////////////////////////////////////////////////////////////
#include <glm/gtc/packing.hpp>
2013-08-11 00:16:47 +00:00
#include <cstdio>
2013-08-26 09:14:46 +00:00
#include <vector>
2013-08-10 17:52:59 +00:00
void print_bits(float const & s)
{
2013-09-01 16:22:47 +00:00
union
{
float f;
unsigned int i;
} uif;
uif.f = s;
printf("f32: ");
for(std::size_t j = sizeof(s) * 8; j > 0; --j)
{
if(j == 23 || j == 31)
printf(" ");
printf("%d", (uif.i & (1 << (j - 1))) ? 1 : 0);
}
2013-08-10 17:52:59 +00:00
}
void print_10bits(glm::uint const & s)
{
2013-09-01 16:22:47 +00:00
printf("10b: ");
for(std::size_t j = 10; j > 0; --j)
{
if(j == 5)
printf(" ");
printf("%d", (s & (1 << (j - 1))) ? 1 : 0);
}
2013-08-10 17:52:59 +00:00
}
void print_11bits(glm::uint const & s)
{
2013-09-01 16:22:47 +00:00
printf("11b: ");
for(std::size_t j = 11; j > 0; --j)
{
if(j == 6)
printf(" ");
printf("%d", (s & (1 << (j - 1))) ? 1 : 0);
}
2013-08-10 17:52:59 +00:00
}
void print_value(float const & s)
{
2013-09-01 16:22:47 +00:00
printf("%2.5f, ", s);
print_bits(s);
printf(", ");
// print_11bits(detail::floatTo11bit(s));
// printf(", ");
// print_10bits(detail::floatTo10bit(s));
printf("\n");
2013-08-10 17:52:59 +00:00
}
2013-08-26 09:14:46 +00:00
int test_Half1x16()
{
2013-09-01 16:22:47 +00:00
int Error = 0;
std::vector<float> Tests;
Tests.push_back(0.0f);
Tests.push_back(1.0f);
Tests.push_back(-1.0f);
Tests.push_back(2.0f);
Tests.push_back(-2.0f);
Tests.push_back(1.9f);
for(std::size_t i = 0; i < Tests.size(); ++i)
{
glm::uint32 p0 = glm::packHalf1x16(Tests[i]);
float v0 = glm::unpackHalf1x16(p0);
glm::uint32 p1 = glm::packHalf1x16(v0);
2014-06-21 11:22:06 +00:00
float v1 = glm::unpackHalf1x16(p1);
2013-09-01 16:22:47 +00:00
Error += (v0 == v1) ? 0 : 1;
}
return Error;
2013-08-26 09:14:46 +00:00
}
int test_Half4x16()
{
2013-09-01 16:22:47 +00:00
int Error = 0;
std::vector<glm::vec4> Tests;
Tests.push_back(glm::vec4(1.0f));
Tests.push_back(glm::vec4(0.0f));
Tests.push_back(glm::vec4(2.0f));
Tests.push_back(glm::vec4(0.1f));
Tests.push_back(glm::vec4(0.5f));
Tests.push_back(glm::vec4(-0.9f));
2013-09-01 16:22:47 +00:00
for(std::size_t i = 0; i < Tests.size(); ++i)
{
glm::uint64 p0 = glm::packHalf4x16(Tests[i]);
glm::vec4 v0 = glm::unpackHalf4x16(p0);
glm::uint64 p1 = glm::packHalf4x16(v0);
2014-06-21 11:22:06 +00:00
glm::vec4 v1 = glm::unpackHalf4x16(p1);
2013-09-01 16:22:47 +00:00
Error += glm::all(glm::equal(v0, v1)) ? 0 : 1;
}
return Error;
2013-08-26 09:14:46 +00:00
}
int test_I3x10_1x2()
{
2013-09-01 16:22:47 +00:00
int Error = 0;
std::vector<glm::ivec4> Tests;
Tests.push_back(glm::ivec4(0));
Tests.push_back(glm::ivec4(1));
Tests.push_back(glm::ivec4(-1));
Tests.push_back(glm::ivec4(2));
Tests.push_back(glm::ivec4(-2));
Tests.push_back(glm::ivec4(3));
for(std::size_t i = 0; i < Tests.size(); ++i)
{
glm::uint32 p0 = glm::packI3x10_1x2(Tests[i]);
glm::ivec4 v0 = glm::unpackI3x10_1x2(p0);
glm::uint32 p1 = glm::packI3x10_1x2(v0);
2014-06-21 11:22:06 +00:00
glm::ivec4 v1 = glm::unpackI3x10_1x2(p1);
2013-09-01 16:22:47 +00:00
Error += glm::all(glm::equal(v0, v1)) ? 0 : 1;
}
return Error;
2013-08-26 09:14:46 +00:00
}
int test_U3x10_1x2()
{
2013-09-01 16:22:47 +00:00
int Error = 0;
std::vector<glm::uvec4> Tests;
Tests.push_back(glm::uvec4(0));
Tests.push_back(glm::uvec4(1));
Tests.push_back(glm::uvec4(2));
Tests.push_back(glm::uvec4(3));
Tests.push_back(glm::uvec4(4));
Tests.push_back(glm::uvec4(5));
for(std::size_t i = 0; i < Tests.size(); ++i)
{
glm::uint32 p0 = glm::packU3x10_1x2(Tests[i]);
glm::uvec4 v0 = glm::unpackU3x10_1x2(p0);
glm::uint32 p1 = glm::packU3x10_1x2(v0);
2014-06-21 11:22:06 +00:00
glm::uvec4 v1 = glm::unpackU3x10_1x2(p1);
2013-09-01 16:22:47 +00:00
Error += glm::all(glm::equal(v0, v1)) ? 0 : 1;
}
return Error;
}
int test_Snorm3x10_1x2()
{
2013-09-01 16:22:47 +00:00
int Error = 0;
std::vector<glm::vec4> Tests;
2014-01-04 13:57:59 +00:00
Tests.push_back(glm::vec4(1.0f));
Tests.push_back(glm::vec4(0.0f));
Tests.push_back(glm::vec4(2.0f));
Tests.push_back(glm::vec4(0.1f));
Tests.push_back(glm::vec4(0.5f));
Tests.push_back(glm::vec4(0.9f));
2013-09-01 16:22:47 +00:00
for(std::size_t i = 0; i < Tests.size(); ++i)
{
glm::uint32 p0 = glm::packSnorm3x10_1x2(Tests[i]);
glm::vec4 v0 = glm::unpackSnorm3x10_1x2(p0);
glm::uint32 p1 = glm::packSnorm3x10_1x2(v0);
2014-06-21 11:22:06 +00:00
glm::vec4 v1 = glm::unpackSnorm3x10_1x2(p1);
2013-09-01 16:22:47 +00:00
Error += glm::all(glm::equal(v0, v1)) ? 0 : 1;
}
return Error;
}
int test_Unorm3x10_1x2()
{
2013-09-01 16:22:47 +00:00
int Error = 0;
std::vector<glm::vec4> Tests;
Tests.push_back(glm::vec4(1.0f));
Tests.push_back(glm::vec4(0.0f));
Tests.push_back(glm::vec4(2.0f));
Tests.push_back(glm::vec4(0.1f));
Tests.push_back(glm::vec4(0.5f));
Tests.push_back(glm::vec4(0.9f));
2013-09-01 16:22:47 +00:00
for(std::size_t i = 0; i < Tests.size(); ++i)
{
glm::uint32 p0 = glm::packSnorm3x10_1x2(Tests[i]);
glm::vec4 v0 = glm::unpackSnorm3x10_1x2(p0);
glm::uint32 p1 = glm::packSnorm3x10_1x2(v0);
2014-06-21 11:22:06 +00:00
glm::vec4 v1 = glm::unpackSnorm3x10_1x2(p1);
2013-09-01 16:22:47 +00:00
Error += glm::all(glm::equal(v0, v1)) ? 0 : 1;
}
return Error;
2013-08-26 09:14:46 +00:00
}
int test_F2x11_1x10()
{
2013-09-01 16:22:47 +00:00
int Error = 0;
std::vector<glm::vec3> Tests;
Tests.push_back(glm::vec3(1.0f));
Tests.push_back(glm::vec3(0.0f));
Tests.push_back(glm::vec3(2.0f));
Tests.push_back(glm::vec3(0.1f));
Tests.push_back(glm::vec3(0.5f));
Tests.push_back(glm::vec3(0.9f));
2013-09-01 16:22:47 +00:00
for(std::size_t i = 0; i < Tests.size(); ++i)
{
glm::uint32 p0 = glm::packF2x11_1x10(Tests[i]);
glm::vec3 v0 = glm::unpackF2x11_1x10(p0);
glm::uint32 p1 = glm::packF2x11_1x10(v0);
2014-06-21 11:22:06 +00:00
glm::vec3 v1 = glm::unpackF2x11_1x10(p1);
2013-09-01 16:22:47 +00:00
Error += glm::all(glm::equal(v0, v1)) ? 0 : 1;
}
return Error;
}
2013-08-10 17:52:59 +00:00
int main()
{
int Error(0);
2013-09-01 16:22:47 +00:00
Error += test_F2x11_1x10();
Error += test_Snorm3x10_1x2();
Error += test_Unorm3x10_1x2();
Error += test_I3x10_1x2();
Error += test_U3x10_1x2();
Error += test_Half1x16();
Error += test_U3x10_1x2();
2013-08-10 17:52:59 +00:00
return Error;
}