backends/wayland: rename files to be more consistent

This commit is contained in:
Xaver Hugl 2022-07-22 15:16:09 +02:00
parent 9d3561faf8
commit 24b1eab228
8 changed files with 11 additions and 11 deletions

View file

@ -1,12 +1,12 @@
target_sources(kwin PRIVATE target_sources(kwin PRIVATE
logging.cpp
scene_qpainter_wayland_backend.cpp
wayland_backend.cpp wayland_backend.cpp
wayland_logging.cpp
wayland_output.cpp wayland_output.cpp
wayland_qpainter_backend.cpp
) )
if (HAVE_WAYLAND_EGL) if (HAVE_WAYLAND_EGL)
target_sources(kwin PRIVATE egl_wayland_backend.cpp) target_sources(kwin PRIVATE wayland_egl_backend.cpp)
endif() endif()
target_link_libraries(kwin KF5::WaylandClient) target_link_libraries(kwin KF5::WaylandClient)

View file

@ -10,14 +10,14 @@
#include "wayland_backend.h" #include "wayland_backend.h"
#if HAVE_WAYLAND_EGL #if HAVE_WAYLAND_EGL
#include "egl_wayland_backend.h" #include "wayland_egl_backend.h"
#include <gbm.h> #include <gbm.h>
#endif #endif
#include "logging.h"
#include "renderloop_p.h" #include "renderloop_p.h"
#include "scene_qpainter_wayland_backend.h"
#include "session.h" #include "session.h"
#include "wayland_logging.h"
#include "wayland_output.h" #include "wayland_output.h"
#include "wayland_qpainter_backend.h"
#include "composite.h" #include "composite.h"
#include "cursor.h" #include "cursor.h"

View file

@ -9,7 +9,7 @@
*/ */
#define WL_EGL_PLATFORM 1 #define WL_EGL_PLATFORM 1
#include "egl_wayland_backend.h" #include "wayland_egl_backend.h"
#include "basiceglsurfacetexture_internal.h" #include "basiceglsurfacetexture_internal.h"
#include "basiceglsurfacetexture_wayland.h" #include "basiceglsurfacetexture_wayland.h"
@ -18,8 +18,8 @@
#include "composite.h" #include "composite.h"
#include "kwinglutils.h" #include "kwinglutils.h"
#include "logging.h"
#include "options.h" #include "options.h"
#include "wayland_logging.h"
#include "wayland_server.h" #include "wayland_server.h"
#include <fcntl.h> #include <fcntl.h>

View file

@ -6,5 +6,5 @@
SPDX-License-Identifier: GPL-2.0-or-later SPDX-License-Identifier: GPL-2.0-or-later
*/ */
#include "logging.h" #include "wayland_logging.h"
Q_LOGGING_CATEGORY(KWIN_WAYLAND_BACKEND, "kwin_wayland_backend", QtWarningMsg) Q_LOGGING_CATEGORY(KWIN_WAYLAND_BACKEND, "kwin_wayland_backend", QtWarningMsg)

View file

@ -7,13 +7,13 @@
SPDX-License-Identifier: GPL-2.0-or-later SPDX-License-Identifier: GPL-2.0-or-later
*/ */
#include "scene_qpainter_wayland_backend.h" #include "wayland_qpainter_backend.h"
#include "wayland_backend.h" #include "wayland_backend.h"
#include "wayland_output.h" #include "wayland_output.h"
#include "composite.h" #include "composite.h"
#include "kwineffects.h" #include "kwineffects.h"
#include "logging.h" #include "wayland_logging.h"
#include <KWayland/Client/buffer.h> #include <KWayland/Client/buffer.h>
#include <KWayland/Client/shm_pool.h> #include <KWayland/Client/shm_pool.h>