1 | // Copyright (C) 2017 Klaralvdalens Datakonsult AB (KDAB). |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | |
4 | #include "matrix4x4_sse_p.h" |
5 | |
6 | #ifdef __SSE2__ |
7 | |
8 | QT_BEGIN_NAMESPACE |
9 | |
10 | namespace Qt3DCore { |
11 | |
12 | QDebug operator<<(QDebug dbg, const Matrix4x4_SSE &m) |
13 | { |
14 | dbg.nospace() << "Matrix4x4_SSE("<< Qt::endl |
15 | << qSetFieldWidth(width: 10) |
16 | << m.m11() << m.m12() << m.m13() << m.m14() << Qt::endl |
17 | << m.m21() << m.m22() << m.m23() << m.m24() << Qt::endl |
18 | << m.m31() << m.m32() << m.m33() << m.m34() << Qt::endl |
19 | << m.m41() << m.m42() << m.m43() << m.m44() << Qt::endl |
20 | << qSetFieldWidth(width: 0) << ')'; |
21 | return dbg; |
22 | } |
23 | |
24 | } // Qt3DCore |
25 | |
26 | QT_END_NAMESPACE |
27 | |
28 | #endif // __SSE2__ |
29 |