2017-09-08 20:30:18 +00:00
|
|
|
set(SCENE_OPENGL_BACKEND_SRCS
|
|
|
|
abstract_egl_backend.cpp
|
|
|
|
backend.cpp
|
[wayland] Add support for zwp_linux_dmabuf
Summary: This adds support for LinuxDmabufUnstableV1Interface in kwin.
Test Plan: Session starts. `weston-simple-dmabuf-egl` and `weston-simple-dmabuf-drm` execute without errors.
Reviewers: #kwin, #plasma, davidedmundson, mart, graesslin, fredrik
Subscribers: meven, zzag, romangg, anthonyfieroni, plasma-devel, kwin
Tags: #kwin
Maniphest Tasks: T8067
Differential Revision: https://phabricator.kde.org/D10750
2019-06-30 23:13:26 +00:00
|
|
|
linux_dmabuf.cpp
|
2017-09-08 20:30:18 +00:00
|
|
|
swap_profiler.cpp
|
|
|
|
texture.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR})
|
|
|
|
|
|
|
|
include(ECMQtDeclareLoggingCategory)
|
|
|
|
ecm_qt_declare_logging_category(SCENE_OPENGL_BACKEND_SRCS
|
|
|
|
HEADER
|
|
|
|
logging.h
|
|
|
|
IDENTIFIER
|
|
|
|
KWIN_OPENGL
|
|
|
|
CATEGORY_NAME
|
|
|
|
kwin_scene_opengl
|
|
|
|
DEFAULT_SEVERITY
|
|
|
|
Critical
|
|
|
|
)
|
|
|
|
|
|
|
|
add_library(SceneOpenGLBackend STATIC ${SCENE_OPENGL_BACKEND_SRCS})
|
2018-02-09 20:00:41 +00:00
|
|
|
target_link_libraries(SceneOpenGLBackend Qt5::Core Qt5::Widgets KF5::CoreAddons KF5::ConfigCore KF5::WindowSystem KF5::WaylandServer)
|