From b2a1d7a29317c78ef8ad7c61b12492f8716cbe28 Mon Sep 17 00:00:00 2001 From: Giuseppe Barbieri Date: Fri, 26 Jan 2018 15:08:02 +0100 Subject: [PATCH] Update core_func_common.cpp --- test/core/core_func_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/core_func_common.cpp b/test/core/core_func_common.cpp index 15493df9..50492634 100644 --- a/test/core/core_func_common.cpp +++ b/test/core/core_func_common.cpp @@ -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; }