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_QSTENCILOPERATIONARGUMENTS_P_H |
5 | #define QT3DRENDER_QSTENCILOPERATIONARGUMENTS_P_H |
6 | |
7 | // |
8 | // W A R N I N G |
9 | // ------------- |
10 | // |
11 | // This file is not part of the Qt API. It exists for the convenience |
12 | // of other Qt classes. This header file may change from version to |
13 | // version without notice, or even be removed. |
14 | // |
15 | // We mean it. |
16 | // |
17 | |
18 | #include <QtCore/private/qobject_p.h> |
19 | #include <Qt3DRender/qstenciloperationarguments.h> |
20 | #include <Qt3DRender/private/qt3drender_global_p.h> |
21 | |
22 | QT_BEGIN_NAMESPACE |
23 | |
24 | namespace Qt3DRender { |
25 | |
26 | class Q_3DRENDERSHARED_PRIVATE_EXPORT QStencilOperationArgumentsPrivate : public QObjectPrivate |
27 | { |
28 | public: |
29 | QStencilOperationArgumentsPrivate(QStencilOperationArguments::FaceMode mode) |
30 | : QObjectPrivate() |
31 | , m_face(mode) |
32 | , m_stencilTestFailureOperation(QStencilOperationArguments::Keep) |
33 | , m_depthTestFailureOperation(QStencilOperationArguments::Keep) |
34 | , m_allTestsPassOperation(QStencilOperationArguments::Keep) |
35 | { |
36 | |
37 | } |
38 | ~QStencilOperationArgumentsPrivate(); |
39 | |
40 | QStencilOperationArguments::FaceMode m_face; |
41 | QStencilOperationArguments::Operation m_stencilTestFailureOperation; |
42 | QStencilOperationArguments::Operation m_depthTestFailureOperation; |
43 | QStencilOperationArguments::Operation m_allTestsPassOperation; |
44 | }; |
45 | |
46 | struct QStencilOperationArgumentsData |
47 | { |
48 | QStencilOperationArguments::FaceMode face; |
49 | QStencilOperationArguments::Operation stencilTestFailureOperation; |
50 | QStencilOperationArguments::Operation depthTestFailureOperation; |
51 | QStencilOperationArguments::Operation allTestsPassOperation; |
52 | }; |
53 | |
54 | } // namespace Qt3DRender |
55 | |
56 | QT_END_NAMESPACE |
57 | |
58 | #endif // QT3DRENDER_QSTENCILOPERATIONARGUMENTS_P_H |
59 |