-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: #42
- Loading branch information
Showing
26 changed files
with
1,858 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
include(ECMQtDeclareLoggingCategory) | ||
ecm_qt_declare_logging_category( | ||
AuroraDeviceIntegrationWayland_SOURCES | ||
HEADER "waylandloggingcategories.h" | ||
IDENTIFIER "Aurora::Platform::gLcWayland" | ||
CATEGORY_NAME "aurora.platform.wayland" | ||
DEFAULT_SEVERITY "Info" | ||
DESCRIPTION "Aurora device integration for Wayland" | ||
) | ||
|
||
qt6_add_plugin(AuroraDeviceIntegrationWayland | ||
SHARED | ||
CLASS_NAME WaylandIntegrationPlugin | ||
MANUAL_FINALIZATION | ||
eglintegration.cpp eglintegration.h | ||
waylandbackend.cpp waylandbackend.h | ||
waylandcursor.cpp waylandcursor.h | ||
waylandinputmanager.cpp waylandinputmanager.h | ||
waylandintegrationplugin.cpp waylandintegrationplugin.h | ||
waylandkeyboard.cpp waylandkeyboard.h | ||
waylandintegration.cpp waylandintegration.h | ||
waylandoutput.cpp waylandoutput.h | ||
waylandpointer.cpp waylandpointer.h | ||
waylandtouch.cpp waylandtouch.h | ||
waylandwindow.cpp waylandwindow.h | ||
wayland.json | ||
${AuroraDeviceIntegrationWayland_SOURCES} | ||
) | ||
|
||
set_target_properties(AuroraDeviceIntegrationWayland | ||
PROPERTIES OUTPUT_NAME wayland | ||
) | ||
|
||
target_link_libraries(AuroraDeviceIntegrationWayland | ||
PUBLIC | ||
Qt6::Core | ||
Qt6::Gui | ||
Liri::AuroraCore | ||
Liri::AuroraPlatform | ||
EGL::EGL | ||
Wayland::Egl | ||
PRIVATE | ||
Liri::AuroraPlatformPrivate | ||
Plasma::KWaylandClient | ||
) | ||
|
||
qt6_finalize_target(AuroraDeviceIntegrationWayland) | ||
|
||
install( | ||
TARGETS AuroraDeviceIntegrationWayland | ||
DESTINATION ${KDE_INSTALL_PLUGINDIR}/aurora/deviceintegration | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
// SPDX-FileCopyrightText: 2023 Pier Luigi Fiorini <[email protected]> | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
#include <QByteArray> | ||
#include <QList> | ||
|
||
#include "eglintegration.h" | ||
#include "waylandbackend.h" | ||
#include "waylandloggingcategories.h" | ||
|
||
namespace Aurora { | ||
|
||
namespace Platform { | ||
|
||
EglIntegration::EglIntegration() | ||
{ | ||
} | ||
|
||
EglIntegration::~EglIntegration() | ||
{ | ||
destroy(); | ||
} | ||
|
||
bool EglIntegration::isInitialized() const | ||
{ | ||
return m_initialized; | ||
} | ||
|
||
EGLDisplay EglIntegration::display() const | ||
{ | ||
return m_eglDisplay; | ||
} | ||
|
||
typedef const char *(*EGLGETERRORSTRINGPROC)(EGLint error); | ||
|
||
bool EglIntegration::initialize() | ||
{ | ||
if (m_initialized) | ||
return true; | ||
|
||
m_initialized = true; | ||
|
||
if (hasEglExtension("EGL_EXT_platform_base")) { | ||
if (hasEglExtension("EGL_KHR_platform_wayland") | ||
|| hasEglExtension("EGL_EXT_platform_wayland") | ||
|| hasEglExtension("EGL_MESA_platform_wayland")) { | ||
static PFNEGLGETPLATFORMDISPLAYEXTPROC eglGetPlatformDisplay = nullptr; | ||
if (!eglGetPlatformDisplay) | ||
eglGetPlatformDisplay = reinterpret_cast<PFNEGLGETPLATFORMDISPLAYEXTPROC>( | ||
eglGetProcAddress("eglGetPlatformDisplayEXT")); | ||
|
||
m_eglDisplay = eglGetPlatformDisplay(EGL_PLATFORM_WAYLAND_KHR, | ||
WaylandBackend::instance()->display(), nullptr); | ||
} else { | ||
qCWarning(gLcWayland) << "The EGL implementation does not support the Wayland platform"; | ||
return false; | ||
} | ||
} else { | ||
QByteArray eglPlatform = qgetenv("EGL_PLATFORM"); | ||
if (eglPlatform.isEmpty()) | ||
setenv("EGL_PLATFORM", "wayland", true); | ||
|
||
m_eglDisplay = eglGetDisplay( | ||
reinterpret_cast<EGLNativeDisplayType>(WaylandBackend::instance()->display())); | ||
} | ||
|
||
return true; | ||
} | ||
|
||
void EglIntegration::destroy() | ||
{ | ||
if (m_eglDisplay != EGL_NO_DISPLAY) { | ||
eglTerminate(m_eglDisplay); | ||
m_eglDisplay = EGL_NO_DISPLAY; | ||
} | ||
} | ||
|
||
bool EglIntegration::hasEglExtension(const char *name, EGLDisplay display) | ||
{ | ||
QList<QByteArray> extensions = | ||
QByteArray(reinterpret_cast<const char *>(eglQueryString(display, EGL_EXTENSIONS))) | ||
.split(' '); | ||
return extensions.contains(name); | ||
} | ||
|
||
} // namespace Platform | ||
|
||
} // namespace Aurora |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
// SPDX-FileCopyrightText: 2023 Pier Luigi Fiorini <[email protected]> | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
#pragma once | ||
|
||
#include <QPointer> | ||
|
||
#ifndef EGL_NO_X11 | ||
# define EGL_NO_X11 | ||
#endif | ||
#ifndef MESA_EGL_NO_X11_HEADERS | ||
# define MESA_EGL_NO_X11_HEADERS | ||
#endif | ||
|
||
#include <EGL/egl.h> | ||
#include <EGL/eglext.h> | ||
|
||
namespace Aurora { | ||
|
||
namespace Platform { | ||
|
||
class EglIntegration | ||
{ | ||
public: | ||
EglIntegration(); | ||
~EglIntegration(); | ||
|
||
bool isInitialized() const; | ||
|
||
EGLDisplay display() const; | ||
|
||
bool initialize(); | ||
void destroy(); | ||
|
||
static bool hasEglExtension(const char *name, EGLDisplay display = EGL_NO_DISPLAY); | ||
|
||
private: | ||
bool m_initialized = false; | ||
EGLDisplay m_eglDisplay = EGL_NO_DISPLAY; | ||
}; | ||
|
||
} // namespace Platform | ||
|
||
} // namespace Aurora |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"Keys": [ "wayland" ] | ||
} |
Oops, something went wrong.