aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/scenegraph/openvg/qsgopenvgtexture.h
blob: 406b4008c05e960da7b9d9ef58ecdd2012a01885 (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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only

#ifndef QSGOPENVGTEXTURE_H
#define QSGOPENVGTEXTURE_H

#include <private/qsgtexture_p.h>

#include <VG/openvg.h>

QT_BEGIN_NAMESPACE

class QSGOpenVGTexture : public QSGTexture
{
public:
    QSGOpenVGTexture(const QImage &image, uint flags);
    ~QSGOpenVGTexture();

    qint64 comparisonKey() const override;
    QSize textureSize() const override;
    bool hasAlphaChannel() const override;
    bool hasMipmaps() const override;

private:
    VGImage m_image;
};

QT_END_NAMESPACE

#endif // QSGOPENVGTEXTURE_H