summaryrefslogtreecommitdiffstats
path: root/core/math/aabb.cpp
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2023-11-17 20:44:38 +0100
committerPedro J. Estébanez <pedrojrulez@gmail.com>2023-11-18 11:56:05 +0100
commitfe4850c0d0e8eed3fe851007c667206684aab0fc (patch)
treec71ad807d00a3ed83a8f73dd630b62ed76cca211 /core/math/aabb.cpp
parentad72de508363ca8d10c6b148be44a02cdf12be13 (diff)
downloadredot-engine-fe4850c0d0e8eed3fe851007c667206684aab0fc.tar.gz
Use mingw-std-threads in MinGW builds
Diffstat (limited to 'core/math/aabb.cpp')
-rw-r--r--core/math/aabb.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/math/aabb.cpp b/core/math/aabb.cpp
index 1071df0979..e1d49dacc0 100644
--- a/core/math/aabb.cpp
+++ b/core/math/aabb.cpp
@@ -117,6 +117,11 @@ AABB AABB::intersection(const AABB &p_aabb) const {
return AABB(min, max - min);
}
+#ifdef MINGW_ENABLED
+#undef near
+#undef far
+#endif
+
bool AABB::intersects_ray(const Vector3 &p_from, const Vector3 &p_dir, Vector3 *r_clip, Vector3 *r_normal) const {
#ifdef MATH_CHECKS
if (unlikely(size.x < 0 || size.y < 0 || size.z < 0)) {