1// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
2// Copyright (C) 2016 The Qt Company Ltd and/or its subsidiary(-ies).
3// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
4
5#ifndef QT3DRENDER_QDITHERING_H
6#define QT3DRENDER_QDITHERING_H
7
8#include <Qt3DRender/qrenderstate.h>
9
10QT_BEGIN_NAMESPACE
11
12namespace Qt3DRender {
13
14class QDitheringPrivate;
15
16class Q_3DRENDERSHARED_EXPORT QDithering : public QRenderState
17{
18 Q_OBJECT
19public:
20 explicit QDithering(Qt3DCore::QNode *parent = nullptr);
21 ~QDithering();
22
23private:
24 Q_DECLARE_PRIVATE(QDithering)
25};
26
27} // namespace Qt3DRender
28
29QT_END_NAMESPACE
30
31#endif // QT3DRENDER_QDITHERING_H
32

source code of qt3d/src/render/renderstates/qdithering.h