summaryrefslogtreecommitdiff
path: root/src/plugins/hardwareintegration/compositor/hardwarelayer/vsp2/main.cpp
blob: 5e1739b67a5f74b6099c21ac3710dab19b6d2884 (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
// Copyright (C) 2018 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QtWaylandCompositor/private/qwlhardwarelayerintegrationplugin_p.h>
#include "vsp2hardwarelayerintegration.h"

QT_BEGIN_NAMESPACE

class Vsp2HardwareLayerIntegrationPlugin : public QtWayland::HardwareLayerIntegrationPlugin
{
    Q_OBJECT
    Q_PLUGIN_METADATA(IID QtWaylandHardwareLayerIntegrationFactoryInterface_iid FILE "vsp2.json")
public:
    QtWayland::HardwareLayerIntegration *create(const QString&, const QStringList&) override;
};

QtWayland::HardwareLayerIntegration *Vsp2HardwareLayerIntegrationPlugin::create(const QString& system, const QStringList& paramList)
{
    Q_UNUSED(paramList);
    Q_UNUSED(system);
    return new Vsp2HardwareLayerIntegration();
}

QT_END_NAMESPACE

#include "main.moc"