From 61e5bcef2629e2d68b805a956a96fff264d4f74d Mon Sep 17 00:00:00 2001 From: untodesu Date: Sat, 28 Jun 2025 01:59:49 +0500 Subject: Restructure dependencies and update to C++20 - Nuked static_assert from almost everywhere in the project - Nuked binary dependency support. Might add one later though - Separated dependency headers into a separate include subdirectory - Grafted a thirdpartylegalnotices.txt generator from RITEG - Pushed development snapshot version to 2126 (26th week of 2025) --- deps/include/glm/ext/matrix_common.inl | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 deps/include/glm/ext/matrix_common.inl (limited to 'deps/include/glm/ext/matrix_common.inl') diff --git a/deps/include/glm/ext/matrix_common.inl b/deps/include/glm/ext/matrix_common.inl deleted file mode 100644 index 1be4222..0000000 --- a/deps/include/glm/ext/matrix_common.inl +++ /dev/null @@ -1,34 +0,0 @@ -#include "../matrix.hpp" - -#include "_matrix_vectorize.hpp" - -namespace glm -{ - template - GLM_FUNC_QUALIFIER mat mix(mat const& x, mat const& y, U a) - { - return mat(x) * (static_cast(1) - a) + mat(y) * a; - } - - template - GLM_FUNC_QUALIFIER mat mix(mat const& x, mat const& y, mat const& a) - { - return matrixCompMult(mat(x), static_cast(1) - a) + matrixCompMult(mat(y), a); - } - - template - struct compute_abs_matrix - { - GLM_FUNC_QUALIFIER GLM_CONSTEXPR static mat call(mat const& x) - { - return detail::matrix_functor_1::call(abs, x); - } - }; - - template - GLM_FUNC_DECL GLM_CONSTEXPR mat abs(mat const& x) - { - return compute_abs_matrix::value>::call(x); - } - -}//namespace glm -- cgit