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 "vector4d_sse_p.h" |
5 | #include <QDebug> |
6 | |
7 | #ifdef __SSE2__ |
8 | |
9 | QT_BEGIN_NAMESPACE |
10 | |
11 | namespace Qt3DCore { |
12 | |
13 | QDebug operator<<(QDebug dbg, const Vector4D_SSE &v) |
14 | { |
15 | dbg.nospace() << "Vector4D_SSE("<< v.x() << ", "<< v.y() << ", "<< v.z() << ", "<< v.w() << ") "; |
16 | return dbg; |
17 | } |
18 | |
19 | } // Qt3DCore |
20 | |
21 | QT_END_NAMESPACE |
22 | |
23 | #endif // __SSE2__ |
24 |