blob: eb4a90c12db9ab6cdd763a046f2bab7010412b06 (
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
58
|
// Copyright (C) 2016 LG Electronics Inc, author: <mikko.levonmaa@lge.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#ifndef QWAYLANDSHM_H
#define QWAYLANDSHM_H
//
// W A R N I N G
// -------------
//
// This file is not part of the Qt API. It exists purely as an
// implementation detail. This header file may change from version to
// version without notice, or even be removed.
//
// We mean it.
//
#include <QImage>
#include <QList>
#include <QtWaylandClient/qtwaylandclientglobal.h>
#include <QtWaylandClient/private/qwayland-wayland.h>
#include <QtCore/private/qglobal_p.h>
QT_BEGIN_NAMESPACE
namespace QtWaylandClient {
class QWaylandDisplay;
class Q_WAYLANDCLIENT_EXPORT QWaylandShm : public QtWayland::wl_shm
{
public:
QWaylandShm(QWaylandDisplay *display, int version, uint32_t id);
~QWaylandShm() override;
bool formatSupported(wl_shm_format format) const;
bool formatSupported(QImage::Format format) const;
static wl_shm_format formatFrom(QImage::Format format);
static QImage::Format formatFrom(wl_shm_format format);
protected:
void shm_format(uint32_t format) override;
private:
QList<uint32_t> m_formats;
};
}
QT_END_NAMESPACE
#endif
|