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
qwaylandeglclientbufferintegration.cpp
Go to the documentation of this file.
1// Copyright (C) 2016 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
6
9
10#include <wayland-client-core.h>
11
12#include <QtCore/QDebug>
13#include <private/qeglconvenience_p.h>
14#include <private/qeglpbuffer_p.h>
15
16#ifndef EGL_EXT_platform_base
17typedef EGLDisplay (*PFNEGLGETPLATFORMDISPLAYEXTPROC) (EGLenum platform, void *native_display, const EGLint *attrib_list);
18#endif
19
20#ifndef EGL_PLATFORM_WAYLAND_KHR
21#define EGL_PLATFORM_WAYLAND_KHR 0x31D8
22#endif
23
24QT_BEGIN_NAMESPACE
25
26namespace QtWaylandClient {
27
29 0
30};
31
36
37
42
44{
45#if QT_CONFIG(egl_extension_platform_wayland)
47#else
48 if (q_hasEglExtension(EGL_NO_DISPLAY, "EGL_EXT_platform_base")) {
49 if (q_hasEglExtension(EGL_NO_DISPLAY, "EGL_KHR_platform_wayland") ||
50 q_hasEglExtension(EGL_NO_DISPLAY, "EGL_EXT_platform_wayland") ||
51 q_hasEglExtension(EGL_NO_DISPLAY, "EGL_MESA_platform_wayland")) {
52
56
58 } else {
59 qCWarning(lcQpaWayland) << "The EGL implementation does not support the Wayland platform";
60 return;
61 }
62 } else {
63 QByteArray eglPlatform = qgetenv("EGL_PLATFORM");
64 if (eglPlatform.isEmpty()) {
65 setenv("EGL_PLATFORM","wayland",true);
66 }
67
69 }
70#endif
71
73
75 qCWarning(lcQpaWayland) << "EGL not available";
76 return;
77 }
78
81 qCWarning(lcQpaWayland) << "Failed to initialize EGL display" << Qt::hex << eglGetError();
83 return;
84 }
85
87 if (qEnvironmentVariableIsSet("QT_OPENGL_NO_SANITY_CHECK"))
88 return;
89
91 for (int i = 0; qwaylandegl_threadedgl_blacklist_vendor[i]; ++i) {
93 m_supportsThreading = false;
94 break;
95 }
96 }
97
98 // On desktop NVIDIA resizing QtQuick freezes them when using threaded rendering QTBUG-95817
99 // In order to support threaded rendering on embedded platforms where resizing is not needed
100 // we check if XDG_CURRENT_DESKTOP is set which desktop environments should set
101 if (qstrcmp(vendor, "NVIDIA") == 0 && qEnvironmentVariableIsSet("XDG_CURRENT_DESKTOP")) {
102 m_supportsThreading = false;
103 }
104}
105
110
115
117{
118 return true;
119}
120
125
133
138
143
148
150{
151 switch (resource) {
152 case EglDisplay:
153 return m_eglDisplay;
154 default:
155 break;
156 }
157 return nullptr;
158}
159
161{
163 switch (resource) {
164 case EglConfig:
165 return static_cast<QWaylandGLContext *>(context)->eglConfig();
166 case EglContext:
167 return static_cast<QWaylandGLContext *>(context)->eglContext();
168 case EglDisplay:
169 return m_eglDisplay;
170 default:
171 break;
172 }
173 return nullptr;
174}
175
180
181}
182
183QT_END_NAMESPACE
static const char * qwaylandegl_threadedgl_blacklist_vendor[]
EGLDisplay(* PFNEGLGETPLATFORMDISPLAYEXTPROC)(EGLenum platform, void *native_display, const EGLint *attrib_list)