blob: a0afd06ed2960eb00dbc88d693eb024d34b206cb (
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
|
// 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 "qwaylandsubsurface_p.h"
#include "qwaylandwindow_p.h"
#include <QtCore/QDebug>
QT_BEGIN_NAMESPACE
namespace QtWaylandClient {
QWaylandSubSurface::QWaylandSubSurface(QWaylandWindow *window, QWaylandWindow *parent, ::wl_subsurface *sub_surface)
: QtWayland::wl_subsurface(sub_surface)
, m_window(window)
, m_parent(parent)
{
m_parent->mChildren << this;
setDeSync();
}
QWaylandSubSurface::~QWaylandSubSurface()
{
m_parent->mChildren.removeOne(this);
destroy();
}
void QWaylandSubSurface::setSync()
{
QMutexLocker l(&m_syncLock);
QWaylandSubSurface::set_sync();
}
void QWaylandSubSurface::setDeSync()
{
QMutexLocker l(&m_syncLock);
QWaylandSubSurface::set_desync();
}
void QWaylandSubSurface::set_sync()
{
m_synchronized = true;
QtWayland::wl_subsurface::set_sync();
}
void QWaylandSubSurface::set_desync()
{
m_synchronized = false;
QtWayland::wl_subsurface::set_desync();
}
}
QT_END_NAMESPACE
|