summaryrefslogtreecommitdiff
path: root/src/client/hardwareintegration/qwaylandserverbufferintegration.cpp
diff options
context:
space:
mode:
authorJorgen Lind <jorgen.lind@digia.com>2014-01-03 17:10:21 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-03 17:37:38 +0100
commit4df5d7613a035178bacbdd29569bb7a3453586f1 (patch)
tree190734052adc0d68630e62815067180f23f73b3f /src/client/hardwareintegration/qwaylandserverbufferintegration.cpp
parent7cb378126c221f8fddac8a7771ba846e627356fa (diff)
downloadqtwayland-4df5d7613a035178bacbdd29569bb7a3453586f1.tar.gz
Add a size to the QWaylandServerBuffer on the client side
Change-Id: I48b7d514c1231eb4bd4a30f1329a89515b497269 Reviewed-by: Laszlo Agocs <laszlo.agocs@digia.com>
Diffstat (limited to 'src/client/hardwareintegration/qwaylandserverbufferintegration.cpp')
-rw-r--r--src/client/hardwareintegration/qwaylandserverbufferintegration.cpp15
1 files changed, 10 insertions, 5 deletions
diff --git a/src/client/hardwareintegration/qwaylandserverbufferintegration.cpp b/src/client/hardwareintegration/qwaylandserverbufferintegration.cpp
index ee64624a..6e3abe91 100644
--- a/src/client/hardwareintegration/qwaylandserverbufferintegration.cpp
+++ b/src/client/hardwareintegration/qwaylandserverbufferintegration.cpp
@@ -11,6 +11,16 @@ QWaylandServerBuffer::~QWaylandServerBuffer()
{
}
+QWaylandServerBuffer::Format QWaylandServerBuffer::format() const
+{
+ return m_format;
+}
+
+QSize QWaylandServerBuffer::size() const
+{
+ return m_size;
+}
+
void QWaylandServerBuffer::setUserData(void *userData)
{
m_user_data = userData;
@@ -21,11 +31,6 @@ void *QWaylandServerBuffer::userData() const
return m_user_data;
}
-QWaylandServerBuffer::Format QWaylandServerBuffer::format() const
-{
- return m_format;
-}
-
QWaylandServerBufferIntegration::QWaylandServerBufferIntegration()
{
}