|
@@ -499,12 +499,10 @@ class Matrix4
|
|
|
static ThisType Compose(const Vector3< Component >& translation, const Vector3< Component >& scale,
|
|
static ThisType Compose(const Vector3< Component >& translation, const Vector3< Component >& scale,
|
|
|
const Vector3< Component >& skew, const Vector4< Component >& perspective, const Vector4< Component >& quaternion) noexcept;
|
|
const Vector3< Component >& skew, const Vector4< Component >& perspective, const Vector4< Component >& quaternion) noexcept;
|
|
|
|
|
|
|
|
-#ifdef RMLUI_MATRIX4_USER_EXTRA
|
|
|
|
|
- #if defined(__has_include) && __has_include(RMLUI_MATRIX4_USER_EXTRA)
|
|
|
|
|
- #include RMLUI_MATRIX4_USER_EXTRA
|
|
|
|
|
- #else
|
|
|
|
|
- RMLUI_MATRIX4_USER_EXTRA
|
|
|
|
|
- #endif
|
|
|
|
|
|
|
+#if defined(RMLUI_MATRIX4_USER_EXTRA)
|
|
|
|
|
+ RMLUI_MATRIX4_USER_EXTRA
|
|
|
|
|
+#elif defined(RMLUI_MATRIX4_USER_INCLUDE)
|
|
|
|
|
+ #include RMLUI_MATRIX4_USER_INCLUDE
|
|
|
#endif
|
|
#endif
|
|
|
};
|
|
};
|
|
|
|
|
|