blob: a8f59a7a57178df74dbaae04c35856dadd0a921f (
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
|
// 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
#include "qwaylandhardwareintegration_p.h"
#include "qwaylanddisplay_p.h"
QT_BEGIN_NAMESPACE
namespace QtWaylandClient {
QWaylandHardwareIntegration::QWaylandHardwareIntegration(struct ::wl_registry *registry, int id)
: qt_hardware_integration(registry, id, 1)
{
}
QString QWaylandHardwareIntegration::clientBufferIntegration()
{
return m_client_buffer;
}
QString QWaylandHardwareIntegration::serverBufferIntegration()
{
return m_server_buffer;
}
void QWaylandHardwareIntegration::hardware_integration_client_backend(const QString &name)
{
m_client_buffer = name;
}
void QWaylandHardwareIntegration::hardware_integration_server_backend(const QString &name)
{
m_server_buffer = name;
}
}
QT_END_NAMESPACE
|