mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 21:45:02 +00:00
Merge pull request #725 from elect86/master
Fixed core_func_common.cpp unsigned test #725
This commit is contained in:
commit
2fd7333dd3
1 changed files with 1 additions and 1 deletions
|
@ -235,7 +235,7 @@ namespace floatBitsToUint
|
|||
{
|
||||
float A = 1.0f;
|
||||
glm::uint B = glm::floatBitsToUint(A);
|
||||
float C = glm::intBitsToFloat(B);
|
||||
float C = glm::uintBitsToFloat(B);
|
||||
Error += glm::epsilonEqual(A, C, 0.0001f) ? 0 : 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue