1 | // Copyright (C) 2016 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 | #ifndef QT3DRENDER_QMULTISAMPLEANTIALIASING_H |
5 | #define QT3DRENDER_QMULTISAMPLEANTIALIASING_H |
6 | |
7 | #include <Qt3DRender/qrenderstate.h> |
8 | |
9 | QT_BEGIN_NAMESPACE |
10 | |
11 | namespace Qt3DRender { |
12 | |
13 | class QMultiSampleAntiAliasingPrivate; |
14 | |
15 | class Q_3DRENDERSHARED_EXPORT QMultiSampleAntiAliasing : public QRenderState |
16 | { |
17 | Q_OBJECT |
18 | |
19 | public: |
20 | explicit QMultiSampleAntiAliasing(Qt3DCore::QNode *parent = nullptr); |
21 | ~QMultiSampleAntiAliasing(); |
22 | |
23 | private: |
24 | Q_DECLARE_PRIVATE(QMultiSampleAntiAliasing) |
25 | }; |
26 | |
27 | } // namespace Qt3DRender |
28 | |
29 | QT_END_NAMESPACE |
30 | |
31 | #endif // QT3DRENDER_QMULTISAMPLEANTIALIASING_H |
32 | |