2017-06-15 23:20:48 +02:00
|
|
|
/* This file is part of the KDE project
|
2024-08-08 01:08:31 +02:00
|
|
|
SPDX-FileCopyrightText: 2017 Alexey Min <alexey.min@gmail.com>
|
|
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
2017-06-15 23:20:48 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "xcb_framebufferplugin.h"
|
|
|
|
|
#include "xcb_framebuffer.h"
|
|
|
|
|
#include <KPluginFactory>
|
|
|
|
|
|
2023-01-18 15:13:42 +01:00
|
|
|
K_PLUGIN_CLASS_WITH_JSON(XCBFrameBufferPlugin, "xcb.json")
|
2017-06-15 23:20:48 +02:00
|
|
|
|
|
|
|
|
XCBFrameBufferPlugin::XCBFrameBufferPlugin(QObject *parent, const QVariantList &args)
|
|
|
|
|
: FrameBufferPlugin(parent, args)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-03 22:00:16 +02:00
|
|
|
FrameBuffer *XCBFrameBufferPlugin::frameBuffer(const QVariantMap &args)
|
2017-06-15 23:20:48 +02:00
|
|
|
{
|
2021-10-14 15:53:33 +02:00
|
|
|
Q_UNUSED(args);
|
2022-08-03 22:00:16 +02:00
|
|
|
return new XCBFrameBuffer;
|
2017-06-15 23:20:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#include "xcb_framebufferplugin.moc"
|