Files
LearnOpenGL/includes/glm/detail/_fixes.hpp
Josh Soref c92f2787c3 spelling: chrome
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2023-01-22 18:10:39 -05:00

28 lines
380 B
C++

#include <cmath>
//! Workaround for compatibility with other libraries
#ifdef max
#undef max
#endif
//! Workaround for compatibility with other libraries
#ifdef min
#undef min
#endif
//! Workaround for Android
#ifdef isnan
#undef isnan
#endif
//! Workaround for Android
#ifdef isinf
#undef isinf
#endif
//! Workaround for Chrome Native Client
#ifdef log2
#undef log2
#endif