blob: 06016bd69c6119bf2c6c85b151558f40d4fd5390 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
// Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
// Copyright (C) 2016 The Qt Company Ltd and/or its subsidiary(-ies).
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QT3DRENDER_QALPHATEST_H
#define QT3DRENDER_QALPHATEST_H
#include <Qt3DRender/qrenderstate.h>
QT_BEGIN_NAMESPACE
namespace Qt3DRender {
class QAlphaTestPrivate;
class Q_3DRENDERSHARED_EXPORT QAlphaTest : public QRenderState
{
Q_OBJECT
Q_PROPERTY(AlphaFunction alphaFunction READ alphaFunction WRITE setAlphaFunction NOTIFY alphaFunctionChanged)
Q_PROPERTY(float referenceValue READ referenceValue WRITE setReferenceValue NOTIFY referenceValueChanged)
public:
enum AlphaFunction {
Never = 0x0200,
Always = 0x0207,
Less = 0x0201,
LessOrEqual = 0x0203,
Equal = 0x0202,
GreaterOrEqual = 0x0206,
Greater = 0x0204,
NotEqual = 0x0205
};
Q_ENUM(AlphaFunction) // LCOV_EXCL_LINE
explicit QAlphaTest(Qt3DCore::QNode *parent = nullptr);
~QAlphaTest();
AlphaFunction alphaFunction() const;
float referenceValue() const;
public Q_SLOTS:
void setAlphaFunction(AlphaFunction alphaFunction);
void setReferenceValue(float referenceValue);
Q_SIGNALS:
void alphaFunctionChanged(AlphaFunction alphaFunction);
void referenceValueChanged(float referenceValue);
private:
Q_DECLARE_PRIVATE(QAlphaTest)
};
} // namespace Qt3DRender
QT_END_NAMESPACE
#endif // QT3DRENDER_QALPHATEST_H
|