Qt
Internal/Contributor docs for the Qt SDK. Note: These are NOT official API docs; those are found at https://doc.qt.io/
Loading...
Searching...
No Matches
main.cpp
Go to the documentation of this file.
1
// Copyright (C) 2019 The Qt Company Ltd.
2
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
// Qt-Security score:significant reason:default
4
5
#
include
<
QtWaylandCompositor
/
private
/
qwlserverbufferintegrationplugin_p
.
h
>
6
#
include
"vulkanserverbufferintegration.h"
7
8
QT_BEGIN_NAMESPACE
9
10
class
VulkanServerBufferIntegrationPlugin
:
public
QtWayland
::
ServerBufferIntegrationPlugin
11
{
12
Q_OBJECT
13
Q_PLUGIN_METADATA(IID QtWaylandServerBufferIntegrationFactoryInterface_iid FILE
"vulkan-server.json"
)
14
public
:
15
QtWayland
::
ServerBufferIntegration
*
create
(
const
QString
&,
const
QStringList
&)
override
;
16
};
17
18
QtWayland::ServerBufferIntegration *
VulkanServerBufferIntegrationPlugin
::create(
const
QString& key,
const
QStringList& paramList)
19
{
20
Q_UNUSED(paramList);
21
Q_UNUSED(key);
22
return
new
VulkanServerBufferIntegration
(
)
;
23
}
24
25
QT_END_NAMESPACE
26
27
#
include
"main.moc"
VulkanServerBufferIntegrationPlugin
Definition
main.cpp:11
VulkanServerBufferIntegration
Definition
vulkanserverbufferintegration.h:57
VulkanServerBufferIntegration::VulkanServerBufferIntegration
VulkanServerBufferIntegration()
Definition
vulkanserverbufferintegration.cpp:235
QT_BEGIN_NAMESPACE
Combined button and popup list for selecting options.
Definition
qsequentialanimationgroup.cpp:47
qtwayland
src
plugins
hardwareintegration
compositor
vulkan-server
main.cpp
Generated on
for Qt by
1.16.1