diff options
| -rw-r--r-- | libs/math/include/math/mat4.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libs/math/include/math/mat4.h b/libs/math/include/math/mat4.h index 6119ba7f68..c630d972b2 100644 --- a/libs/math/include/math/mat4.h +++ b/libs/math/include/math/mat4.h @@ -34,6 +34,14 @@ #define CONSTEXPR #endif +#ifdef _WIN32 +// windows.h contains obsolete defines of 'near' and 'far' for systems using +// legacy 16 bit pointers. Undefine them to avoid conflicting with the usage of +// 'near' and 'far' in this file. +#undef near +#undef far +#endif + namespace android { // ------------------------------------------------------------------------------------- namespace details { |