summaryrefslogtreecommitdiffstats
path: root/src/client/hardwareintegration/qwaylandserverbufferintegration.cpp
blob: ee64624ada7617e4525c621169498044a8794fc7 (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
#include "qwaylandserverbufferintegration_p.h"

QT_BEGIN_NAMESPACE

QWaylandServerBuffer::QWaylandServerBuffer()
    : m_user_data(0)
{
}

QWaylandServerBuffer::~QWaylandServerBuffer()
{
}

void QWaylandServerBuffer::setUserData(void *userData)
{
    m_user_data = userData;
}

void *QWaylandServerBuffer::userData() const
{
    return m_user_data;
}

QWaylandServerBuffer::Format QWaylandServerBuffer::format() const
{
    return m_format;
}

QWaylandServerBufferIntegration::QWaylandServerBufferIntegration()
{
}
QWaylandServerBufferIntegration::~QWaylandServerBufferIntegration()
{
}

QT_END_NAMESPACE