move Filament headers to own directory under iOS/macOS

This commit is contained in:
Nick Fisher
2023-10-03 00:15:41 +08:00
parent 423f563350
commit 2a3a99c974
412 changed files with 8665 additions and 52334 deletions

View File

@@ -33,8 +33,7 @@
#include <stdint.h>
namespace filament {
namespace math {
namespace filament::math {
namespace details {
template<typename T> class TVec2;
@@ -45,6 +44,8 @@ template<typename T> class TMat22;
template<typename T> class TMat33;
template<typename T> class TMat44;
template<typename T> class TQuaternion;
} // namespace details
using double2 = details::TVec2<double>;
@@ -86,8 +87,10 @@ using mat3f = details::TMat33<float>;
using mat4 = details::TMat44<double>;
using mat4f = details::TMat44<float>;
} // namespace math
} // namespace filament
using quat = details::TQuaternion<double>;
using quatf = details::TQuaternion<float>;
} // namespace filament::math
#endif // _MSC_VER