1 | // Copyright (C) 2020 The Qt Company Ltd. |
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 QSGVIDEOTEXTURE_H |
5 | #define QSGVIDEOTEXTURE_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 purely as an |
12 | // implementation detail. 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 <QtQuick/QSGTexture> |
19 | #include <QImage> |
20 | #include <rhi/qrhi.h> |
21 | #include <private/qtmultimediaquickglobal_p.h> |
22 | |
23 | QT_BEGIN_NAMESPACE |
24 | |
25 | class QSGVideoTexturePrivate; |
26 | class Q_MULTIMEDIAQUICK_EXPORT QSGVideoTexture : public QSGTexture |
27 | { |
28 | Q_DECLARE_PRIVATE(QSGVideoTexture) |
29 | public: |
30 | QSGVideoTexture(); |
31 | ~QSGVideoTexture(); |
32 | |
33 | qint64 comparisonKey() const override; |
34 | QRhiTexture *rhiTexture() const override; |
35 | QSize textureSize() const override; |
36 | bool hasAlphaChannel() const override; |
37 | bool hasMipmaps() const override; |
38 | void setRhiTexture(QRhiTexture *texture); |
39 | void setData(QRhiTexture::Format f, const QSize &s, const uchar *data, int bytes); |
40 | |
41 | protected: |
42 | QScopedPointer<QSGVideoTexturePrivate> d_ptr; |
43 | }; |
44 | |
45 | QT_END_NAMESPACE |
46 | |
47 | #endif // QSGVIDEOTEXTURE_H |
48 | |