projects
/
platform
/
core
/
uifw
/
dali-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b0a5dac
)
Revert "[Tizen] Temporary fix, Will be removed later, Fix Emul crash issue"
author
Sunghyun kim
<scholb.kim@samsung.com>
Tue, 1 Oct 2019 05:59:26 +0000
(14:59 +0900)
committer
Sunghyun kim
<scholb.kim@samsung.com>
Tue, 1 Oct 2019 05:59:26 +0000
(14:59 +0900)
This reverts commit
c6f3da4e2eae24fb5745e41d80b6905d38ccbfe7
.
dali/public-api/math/vector3.cpp
patch
|
blob
|
history
diff --git
a/dali/public-api/math/vector3.cpp
b/dali/public-api/math/vector3.cpp
index 3514958a28d86970d7f0dd7d39d7c2127a506978..2b410d0e3d3188373f1f70a597931d09b63c7faf 100644
(file)
--- a/
dali/public-api/math/vector3.cpp
+++ b/
dali/public-api/math/vector3.cpp
@@
-97,16
+97,6
@@
Vector3& Vector3::operator*=(const Quaternion& rhs)
return *this;
}
-// Temporary fix, Will be removed later, Fix Emul crash issue
-#ifndef _ARCH_ARM_
-#undef fabsf
-float fabsf(float value)
-{
- if (value < 0) return -value;
- return value;
-}
-#endif
-
bool Vector3::operator==(const Vector3& rhs) const
{
if (fabsf(x - rhs.x) > GetRangedEpsilon(x, rhs.x) )