diff options
author | David Redondo <qt@david-redondo.de> | 2022-10-12 09:01:07 +0200 |
---|---|---|
committer | David Redondo <qt@david-redondo.de> | 2022-12-08 10:31:45 +0100 |
commit | f8c8a06f08583a48e953fc989241b94325760618 (patch) | |
tree | 27e2378318bfc8abcb81bef75a3dbbc39aff320c /src/client/qwaylandnativeinterface.cpp | |
parent | 23d3fc712cdf7fc0a4ff837082de9ba773e8605c (diff) | |
download | qtwayland-f8c8a06f08583a48e953fc989241b94325760618.tar.gz |
client: Implement QNativeInterface::Private::QWaylandWindow
Task-number: QTBUG-94729
Change-Id: Ib79f3199a4518700aa032c5ca4760a2b53c401e5
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: David Edmundson <davidedmundson@kde.org>
Diffstat (limited to 'src/client/qwaylandnativeinterface.cpp')
-rw-r--r-- | src/client/qwaylandnativeinterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/qwaylandnativeinterface.cpp b/src/client/qwaylandnativeinterface.cpp index b76b1f08..ea3da8b4 100644 --- a/src/client/qwaylandnativeinterface.cpp +++ b/src/client/qwaylandnativeinterface.cpp @@ -143,7 +143,7 @@ void *QWaylandNativeInterface::nativeResourceForWindow(const QByteArray &resourc if (lowerCaseResource == "vksurface") { if (window->surfaceType() == QSurface::VulkanSurface && window->handle()) { // return a pointer to the VkSurfaceKHR value, not the value itself - return static_cast<QWaylandVulkanWindow *>(window->handle())->surface(); + return static_cast<QWaylandVulkanWindow *>(window->handle())->vkSurface(); } } #endif |