| 1 | // Copyright (C) 2017 The Qt Company Ltd. |
|---|---|
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
| 3 | |
| 4 | #include <QtWaylandCompositor/private/qwlserverbufferintegrationplugin_p.h> |
| 5 | #include "shmserverbufferintegration.h" |
| 6 | |
| 7 | QT_BEGIN_NAMESPACE |
| 8 | |
| 9 | class ShmServerBufferIntegrationPlugin : public QtWayland::ServerBufferIntegrationPlugin |
| 10 | { |
| 11 | Q_OBJECT |
| 12 | Q_PLUGIN_METADATA(IID QtWaylandServerBufferIntegrationFactoryInterface_iid FILE "shm-emulation-server.json") |
| 13 | public: |
| 14 | QtWayland::ServerBufferIntegration *create(const QString&, const QStringList&) override; |
| 15 | }; |
| 16 | |
| 17 | QtWayland::ServerBufferIntegration *ShmServerBufferIntegrationPlugin::create(const QString& system, const QStringList& paramList) |
| 18 | { |
| 19 | Q_UNUSED(paramList); |
| 20 | Q_UNUSED(system); |
| 21 | return new ShmServerBufferIntegration(); |
| 22 | } |
| 23 | |
| 24 | QT_END_NAMESPACE |
| 25 | |
| 26 | #include "main.moc" |
| 27 |
