forked from g-truc/glm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added files for EXT packing extensions
- Loading branch information
1 parent
65c8ff2
commit 6bd53cc
Showing
7 changed files
with
119 additions
and
1 deletion.
There are no files selected for viewing
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/// @ref vector_packing | ||
/// @file glm/ext/vector_packing.hpp | ||
/// | ||
/// @see core (dependence) | ||
/// | ||
/// @defgroup ext_vector_packing GLM_EXT_vector_packing | ||
/// @ingroup ext | ||
/// | ||
/// Include <glm/ext/vector_packing.hpp> to use the features of this extension. | ||
/// | ||
/// This extension provides a set of function to convert vertors to packed | ||
/// formats. | ||
|
||
#pragma once | ||
|
||
// Dependency: | ||
#include "../detail/qualifier.hpp" | ||
|
||
#if GLM_MESSAGES == GLM_ENABLE && !defined(GLM_EXT_INCLUDED) | ||
# pragma message("GLM: GLM_EXT_vector_packing extension included") | ||
#endif | ||
|
||
namespace glm | ||
{ | ||
/// @addtogroup ext_vector_packing | ||
/// @{ | ||
|
||
|
||
/// @} | ||
}// namespace glm | ||
|
||
#include "vector_packing.inl" |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#include <glm/ext/scalar_packing.hpp> | ||
#include <glm/ext/scalar_relational.hpp> | ||
|
||
int test_packUnorm() | ||
{ | ||
int Error = 0; | ||
|
||
|
||
return Error; | ||
} | ||
|
||
int test_packSnorm() | ||
{ | ||
int Error = 0; | ||
|
||
|
||
return Error; | ||
} | ||
|
||
int main() | ||
{ | ||
int Error = 0; | ||
|
||
Error += test_packUnorm(); | ||
Error += test_packSnorm(); | ||
|
||
return Error; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
#include <glm/ext/vector_packing.hpp> | ||
#include <glm/ext/vector_relational.hpp> | ||
#include <glm/ext/vector_uint2_sized.hpp> | ||
#include <glm/ext/vector_int2_sized.hpp> | ||
#include <glm/gtc/packing.hpp> | ||
#include <glm/vec2.hpp> | ||
#include <vector> | ||
|
||
int test_packUnorm() | ||
{ | ||
int Error = 0; | ||
|
||
std::vector<glm::vec2> A; | ||
A.push_back(glm::vec2(1.0f, 0.7f)); | ||
A.push_back(glm::vec2(0.5f, 0.1f)); | ||
|
||
for (std::size_t i = 0; i < A.size(); ++i) | ||
{ | ||
glm::vec2 B(A[i]); | ||
glm::u16vec2 C = glm::packUnorm<glm::uint16>(B); | ||
glm::vec2 D = glm::unpackUnorm<float>(C); | ||
Error += glm::all(glm::equal(B, D, 1.0f / 255.f)) ? 0 : 1; | ||
assert(!Error); | ||
} | ||
|
||
return Error; | ||
} | ||
|
||
int test_packSnorm() | ||
{ | ||
int Error = 0; | ||
|
||
std::vector<glm::vec2> A; | ||
A.push_back(glm::vec2(1.0f, 0.0f)); | ||
A.push_back(glm::vec2(-0.5f, -0.7f)); | ||
A.push_back(glm::vec2(-0.1f, 0.1f)); | ||
|
||
for (std::size_t i = 0; i < A.size(); ++i) | ||
{ | ||
glm::vec2 B(A[i]); | ||
glm::i16vec2 C = glm::packSnorm<glm::int16>(B); | ||
glm::vec2 D = glm::unpackSnorm<float>(C); | ||
Error += glm::all(glm::equal(B, D, 1.0f / 32767.0f * 2.0f)) ? 0 : 1; | ||
assert(!Error); | ||
} | ||
|
||
return Error; | ||
} | ||
|
||
int main() | ||
{ | ||
int Error = 0; | ||
|
||
Error += test_packUnorm(); | ||
Error += test_packSnorm(); | ||
|
||
return Error; | ||
} |