From 8dd50ef206f384ac781d6bb9ca5e254851531298 Mon Sep 17 00:00:00 2001 From: Marcel Krems Date: Mon, 24 Aug 2020 19:33:18 +0200 Subject: Remove deprecated qGenericMatrix{To,From}Matrix4x4 functions Change-Id: I3b43d48f5324f3a1f2fff8e22bb4f9563d3ea997 Reviewed-by: Thiago Macieira --- src/gui/math3d/qmatrix4x4.cpp | 24 ------------------------ src/gui/math3d/qmatrix4x4.h | 27 --------------------------- 2 files changed, 51 deletions(-) (limited to 'src/gui/math3d') diff --git a/src/gui/math3d/qmatrix4x4.cpp b/src/gui/math3d/qmatrix4x4.cpp index 31bc51b9e1..bad19267d3 100644 --- a/src/gui/math3d/qmatrix4x4.cpp +++ b/src/gui/math3d/qmatrix4x4.cpp @@ -144,30 +144,6 @@ QMatrix4x4::QMatrix4x4(const float *values) identity matrix. */ -/*! - \fn template QMatrix4x4 qGenericMatrixToMatrix4x4(const QGenericMatrix& matrix) - \relates QMatrix4x4 - \obsolete - - Returns a 4x4 matrix constructed from the left-most 4 columns and - top-most 4 rows of \a matrix. If \a matrix has less than 4 columns - or rows, the remaining elements are filled with elements from the - identity matrix. -*/ - -/*! - \fn QGenericMatrix qGenericMatrixFromMatrix4x4(const QMatrix4x4& matrix) - \relates QMatrix4x4 - \obsolete - - Returns a NxM generic matrix constructed from the left-most N columns - and top-most M rows of \a matrix. If N or M is greater than 4, - then the remaining elements are filled with elements from the - identity matrix. - - \sa QMatrix4x4::toGenericMatrix() -*/ - /*! \internal */ diff --git a/src/gui/math3d/qmatrix4x4.h b/src/gui/math3d/qmatrix4x4.h index 4f1a74a834..5664de6729 100644 --- a/src/gui/math3d/qmatrix4x4.h +++ b/src/gui/math3d/qmatrix4x4.h @@ -1109,33 +1109,6 @@ Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QMatrix4x4 &); Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QMatrix4x4 &); #endif -#if QT_DEPRECATED_SINCE(5, 0) -template -QT_DEPRECATED QMatrix4x4 qGenericMatrixToMatrix4x4(const QGenericMatrix& matrix) -{ - return QMatrix4x4(matrix.constData(), N, M); -} - -template -QT_DEPRECATED QGenericMatrix qGenericMatrixFromMatrix4x4(const QMatrix4x4& matrix) -{ - QGenericMatrix result; - const float *m = matrix.constData(); - float *values = result.data(); - for (int col = 0; col < N; ++col) { - for (int row = 0; row < M; ++row) { - if (col < 4 && row < 4) - values[col * M + row] = m[col * 4 + row]; - else if (col == row) - values[col * M + row] = 1.0f; - else - values[col * M + row] = 0.0f; - } - } - return result; -} -#endif - #endif QT_END_NAMESPACE -- cgit v1.2.3