Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qvulkanfunctions.cpp
Go to the documentation of this file.
1// Copyright (C) 2017 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3
4#include <private/qvulkanfunctions_p.h>
5
7
104/*
105 Constructs a new QVulkanFunctions for \a inst.
106 \internal
107 */
108QVulkanFunctions::QVulkanFunctions(QVulkanInstance *inst)
109 : d_ptr(new QVulkanFunctionsPrivate(inst))
110{
111}
112
113/*
114 Destructor.
115 */
116QVulkanFunctions::~QVulkanFunctions()
117{
118}
119
120/*
121 Constructs a new QVulkanDeviceFunctions for \a inst and the given \a device.
122 \internal
123 */
124QVulkanDeviceFunctions::QVulkanDeviceFunctions(QVulkanInstance *inst, VkDevice device)
125 : d_ptr(new QVulkanDeviceFunctionsPrivate(inst, device))
126{
127}
128
129/*
130 Destructor.
131 */
132QVulkanDeviceFunctions::~QVulkanDeviceFunctions()
133{
134}
135
IOBluetoothDevice * device
The QVulkanInstance class represents a native Vulkan instance, enabling Vulkan rendering onto a QSurf...
Combined button and popup list for selecting options.