Added GLM

This commit is contained in:
Robert 2021-01-21 19:19:44 +01:00
parent 1c008b1c9d
commit 98425f45c8
420 changed files with 62430 additions and 0 deletions

27
vendor/include/glm/detail/_fixes.hpp vendored Normal file
View file

@ -0,0 +1,27 @@
#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 Chrone Native Client
#ifdef log2
#undef log2
#endif