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
qabstractopenxrgraphics.cpp
Go to the documentation of this file.
1// Copyright (C) 2024 The Qt Company Ltd.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
3
5
7
8QAbstractOpenXRGraphics::QAbstractOpenXRGraphics()
9{
10
11}
12
14{
15
16}
17
18bool QAbstractOpenXRGraphics::hasExtension(const QVector<XrExtensionProperties> &extensions, const char *extensionName)
19{
20 for (const auto &extension : extensions) {
21 if (!strcmp(extensionName, extension.extensionName)) {
22 return true;
23 }
24 }
25 return false;
26}
27
28QT_END_NAMESPACE
virtual void setupWindow(QQuickWindow *)
Combined button and popup list for selecting options.