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
qvkkhrdisplayvulkaninstance.h
Go to the documentation of this file.
1// Copyright (C) 2021 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// Qt-Security score:significant reason:default
4
5#ifndef QVKKHRDISPLAYVULKANINSTANCE_H
6#define QVKKHRDISPLAYVULKANINSTANCE_H
7
8//
9// W A R N I N G
10// -------------
11//
12// This file is not part of the Qt API. It exists purely as an
13// implementation detail. This header file may change from version to
14// version without notice, or even be removed.
15//
16// We mean it.
17//
18
19#include <QtGui/private/qbasicvulkanplatforminstance_p.h>
20#include <QtCore/qsize.h>
21
22#include <climits> // For UINT_MAX
23
24QT_BEGIN_NAMESPACE
25
26class QVkKhrDisplayVulkanInstance : public QBasicPlatformVulkanInstance
27{
28public:
29 QVkKhrDisplayVulkanInstance(QVulkanInstance *instance);
30
31 void createOrAdoptInstance() override;
32 bool supportsPresent(VkPhysicalDevice physicalDevice, uint32_t queueFamilyIndex, QWindow *window) override;
33 void presentAboutToBeQueued(QWindow *window) override;
34
35 VkSurfaceKHR createSurface(QWindow *window);
36
37 QSize displaySize() const { return QSize(int(m_width), int(m_height)); }
38
39 using CreatedCallback = void (*)(QVkKhrDisplayVulkanInstance *, void *);
40 void setCreatedCallback(CreatedCallback callback, void *userData) {
41 m_createdCallback = callback;
42 m_createdCallbackUserData = userData;
43 }
44
45private:
46 bool chooseDisplay();
47
48 QVulkanInstance *m_instance;
49 VkPhysicalDevice m_physDev = VK_NULL_HANDLE;
50 PFN_vkEnumeratePhysicalDevices m_enumeratePhysicalDevices = nullptr;
51 PFN_vkGetPhysicalDeviceSurfaceSupportKHR m_getPhysicalDeviceSurfaceSupportKHR = nullptr;
52#if VK_KHR_display
53 PFN_vkGetPhysicalDeviceDisplayPropertiesKHR m_getPhysicalDeviceDisplayPropertiesKHR = nullptr;
54 PFN_vkGetDisplayModePropertiesKHR m_getDisplayModePropertiesKHR = nullptr;
55 PFN_vkGetPhysicalDeviceDisplayPlanePropertiesKHR m_getPhysicalDeviceDisplayPlanePropertiesKHR = nullptr;
56 PFN_vkGetDisplayPlaneSupportedDisplaysKHR m_getDisplayPlaneSupportedDisplaysKHR = nullptr;
57 PFN_vkGetDisplayPlaneCapabilitiesKHR m_getDisplayPlaneCapabilitiesKHR = nullptr;
58 PFN_vkCreateDisplayPlaneSurfaceKHR m_createDisplayPlaneSurfaceKHR = nullptr;
59#endif
60
61 CreatedCallback m_createdCallback = nullptr;
62 void *m_createdCallbackUserData = nullptr;
63 VkDisplayKHR m_display = VK_NULL_HANDLE;
64 VkDisplayModeKHR m_displayMode = VK_NULL_HANDLE;
65 uint32_t m_width = 0;
66 uint32_t m_height = 0;
67 uint32_t m_planeIndex = UINT_MAX;
68 uint32_t m_planeStackIndex = UINT_MAX;
69};
70
72
73#endif
void flush(QWindow *window, const QRegion &region, const QPoint &offset) override
Flushes the given region from the specified window.
QPaintDevice * paintDevice() override
Implement this function to return the appropriate paint device.
void resize(const QSize &size, const QRegion &staticContents) override
bool hasCapability(QPlatformIntegration::Capability cap) const override
QPlatformBackingStore * createPlatformBackingStore(QWindow *window) const override
Factory function for QPlatformBackingStore.
QPlatformTheme * createPlatformTheme(const QString &name) const override
QVkKhrDisplayIntegration(const QStringList &parameters)
QPlatformVulkanInstance * createPlatformVulkanInstance(QVulkanInstance *instance) const override
QPlatformServices * services() const override
QPlatformInputContext * inputContext() const override
Returns the platforms input context.
QPlatformNativeInterface * nativeInterface() const override
QPlatformFontDatabase * fontDatabase() const override
Accessor for the platform integration's fontdatabase.
QAbstractEventDispatcher * createEventDispatcher() const override
Factory function for the GUI event dispatcher.
void initialize() override
Performs initialization steps that depend on having an event dispatcher available.
void * nativeResourceForWindow(const QByteArray &resource, QWindow *window) override
QPlatformWindow * createPlatformWindow(QWindow *window) const override
Factory function for QPlatformWindow.
QRect geometry() const override
Reimplement in subclass to return the pixel geometry of the screen.
QImage::Format format() const override
Reimplement in subclass to return the image format which corresponds to the screen format.
void setVk(QVkKhrDisplayVulkanInstance *inst)
int depth() const override
Reimplement in subclass to return current depth of the screen.
void setGeometry(const QRect &r) override
This function is called by Qt whenever a window is moved or resized using the QWindow API.
Combined button and popup list for selecting options.
static int resourceType(const QByteArray &key)