2015-04-09 12:49:32 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2015 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef KWIN_DRM_BACKEND_H
|
|
|
|
#define KWIN_DRM_BACKEND_H
|
2016-04-07 07:24:17 +00:00
|
|
|
#include "platform.h"
|
2016-02-15 14:40:25 +00:00
|
|
|
#include "input.h"
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2016-03-21 14:11:17 +00:00
|
|
|
#include "drm_buffer.h"
|
2017-05-09 19:00:33 +00:00
|
|
|
#if HAVE_GBM
|
|
|
|
#include "drm_buffer_gbm.h"
|
|
|
|
#endif
|
2016-03-21 14:11:17 +00:00
|
|
|
#include "drm_inputeventfilter.h"
|
|
|
|
#include "drm_pointer.h"
|
|
|
|
|
2016-02-15 16:35:36 +00:00
|
|
|
#include <QElapsedTimer>
|
2015-04-09 12:49:32 +00:00
|
|
|
#include <QImage>
|
2015-06-29 10:35:38 +00:00
|
|
|
#include <QPointer>
|
2015-04-09 12:49:32 +00:00
|
|
|
#include <QSize>
|
2018-03-28 23:27:21 +00:00
|
|
|
#include <QVector>
|
2015-04-09 12:49:32 +00:00
|
|
|
#include <xf86drmMode.h>
|
|
|
|
|
2017-10-05 16:58:57 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2015-04-10 08:44:07 +00:00
|
|
|
struct gbm_bo;
|
2016-08-19 14:09:18 +00:00
|
|
|
struct gbm_device;
|
2015-04-10 08:44:07 +00:00
|
|
|
struct gbm_surface;
|
|
|
|
|
2015-04-09 12:49:32 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class Udev;
|
2015-04-24 06:15:55 +00:00
|
|
|
class UdevMonitor;
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2015-04-14 09:25:16 +00:00
|
|
|
class DrmOutput;
|
2016-08-31 12:00:31 +00:00
|
|
|
class DrmPlane;
|
[DRM plugin] Remember static kernel objects, amplify use of DrmCrtc
To get an image from KWin to the screen in the DRM pipeline we combine a CRTC,
an encoder and a connector. These objects are static in the sense, that they
represent real hardware on the graphics card, which doesn't change in a
session. See here for more details:
https://01.org/linuxgraphics/gfx-docs/drm/gpu/drm-kms.html
Until now we used DrmOutput as the main representation for such an active
rendering pipeline. I.e. it gets created and destroyed on hot plug events of
displays. On the other side we had no fixed representation of the static kernel
objects throughout the lifetime of KWin. This has several disadvantages:
* We always need to query all available static objects on an hot plug event.
* We can't manipulate the frame buffer of a CRTC after an output has been
disconnected
* Adding functionality for driving multiple displays on a single CRTC (i.e.
cloning) would be difficult
* We can't destroy the last frame buffer on display disconnect because the CRTC
still accesses it and have therefore a memory leak on every display disconnect
This patch solves these issues by storing representations of all available CRTC
and Connector objects in DrmBackend on init via DrmCrtc and DrmConnector
instances. On an hotplug event these vectors are looped for a fitting CRTC and
Connector combinations. Buffer handling is moved to the respective CRTC
instance. All changes in overview:
* Query all available CRTCs and Connectors and save for subsequent hotplug
events
* Fix logic errors in `queryResources()`
* Move framebuffers, buffer flip and blank logic in DrmCrtc
* Remove `restoreSaved()`. It isn't necessary and is dangerous if the old
framebuffer was deleted in the meantime. Also could reveal sensitive user
info from old session.
Test Plan:
Login, logout, VT switching, connect and disconnect external monitor, energy
saving mode.
Reviewers: #kwin
Subscribers: kwin, #kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D5118
2017-05-09 18:02:49 +00:00
|
|
|
class DrmCrtc;
|
|
|
|
class DrmConnector;
|
2017-10-05 16:58:57 +00:00
|
|
|
class GbmSurface;
|
2020-04-02 16:18:01 +00:00
|
|
|
class Cursor;
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2015-08-27 14:15:04 +00:00
|
|
|
|
2016-04-07 07:18:10 +00:00
|
|
|
class KWIN_EXPORT DrmBackend : public Platform
|
2015-04-09 12:49:32 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2016-04-07 07:18:10 +00:00
|
|
|
Q_INTERFACES(KWin::Platform)
|
|
|
|
Q_PLUGIN_METADATA(IID "org.kde.kwin.Platform" FILE "drm.json")
|
2015-04-09 12:49:32 +00:00
|
|
|
public:
|
|
|
|
explicit DrmBackend(QObject *parent = nullptr);
|
Run clang-tidy with modernize-use-override check
Summary:
Currently code base of kwin can be viewed as two pieces. One is very
ancient, and the other one is more modern, which uses new C++ features.
The main problem with the ancient code is that it was written before
C++11 era. So, no override or final keywords, lambdas, etc.
Quite recently, KDE compiler settings were changed to show a warning if
a virtual method has missing override keyword. As you might have already
guessed, this fired back at us because of that ancient code. We had
about 500 new compiler warnings.
A "solution" was proposed to that problem - disable -Wno-suggest-override
and the other similar warning for clang. It's hard to call a solution
because those warnings are disabled not only for the old code, but also
for new. This is not what we want!
The main argument for not actually fixing the problem was that git
history will be screwed as well because of human factor. While good git
history is a very important thing, we should not go crazy about it and
block every change that somehow alters git history. git blame allows to
specify starting revision for a reason.
The other argument (human factor) can be easily solved by using tools
such as clang-tidy. clang-tidy is a clang-based linter for C++. It can
be used for various things, e.g. fixing coding style(e.g. add missing
braces to if statements, readability-braces-around-statements check),
or in our case add missing override keywords.
Test Plan: Compiles.
Reviewers: #kwin, davidedmundson
Reviewed By: #kwin, davidedmundson
Subscribers: davidedmundson, apol, romangg, kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D22371
2019-07-22 16:52:26 +00:00
|
|
|
~DrmBackend() override;
|
2015-04-09 12:49:32 +00:00
|
|
|
|
|
|
|
Screens *createScreens(QObject *parent = nullptr) override;
|
|
|
|
QPainterBackend *createQPainterBackend() override;
|
2015-04-10 08:44:07 +00:00
|
|
|
OpenGLBackend* createOpenGLBackend() override;
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2015-05-06 06:32:39 +00:00
|
|
|
void init() override;
|
2019-09-05 14:59:53 +00:00
|
|
|
void prepareShutdown() override;
|
|
|
|
|
2017-05-09 19:00:33 +00:00
|
|
|
DrmDumbBuffer *createBuffer(const QSize &size);
|
2017-05-11 21:47:27 +00:00
|
|
|
#if HAVE_GBM
|
2017-10-05 16:58:57 +00:00
|
|
|
DrmSurfaceBuffer *createBuffer(const std::shared_ptr<GbmSurface> &surface);
|
2017-05-11 21:47:27 +00:00
|
|
|
#endif
|
[platforms/drm] EGLStream DRM Backend Initial Implementation
Summary:
This is the initial implementation of a DRM backend based on the EGLDevice,
EGLOutput, and EGLStream extensions, supporting NVIDIA graphics hardware using
their proprietary driver. The new backend will be used if the environment
variable KWIN_DRM_USE_EGL_STREAMS is set. On initialization, it will attempt to
create an EGLDevice based on the DRM device currently in use and create
EGLOutputs and EGLStreams for any attached displays. These are used to control
presentation of the final composited frame. Additionally, it will register the
wl_eglstream_controller Wayland interface so that native EGL windows created by
clients can be attached to an EGLStream allowing buffer contents to be shared
with the compositor as a GL texture.
At this time there are two known bugs in the NVIDIA driver's EGL implementation
affecting desktop functionality. The first can result in tooltip windows drawn
by plasmashell to contain incorrect contents. The second prevents KWayland from
being able to query the format of EGLStream-backed buffers which interferes
with the blur effect. Fixes for both of these are currently in development and
should appear in an upcoming NVIDIA driver release.
Additionally, hardware cursors are currently not supported with this backend.
Enabling them causes the desktop to intermittently hang for several seconds.
This is also likely a bug in the NVIDIA DRM-KMS implementation but the root
cause is still under investigation.
Test Plan:
On a system with an NVIDIA graphics card running a recent release of their
proprietary driver
* Ensure the nvidia_drm kernel module is loaded with the option "modeset=1"
("# cat /sys/module/nvidia_drm/parameters/modeset" should print "Y")
* Ensure EGL external platform support is installed
https://github.com/NVIDIA/eglexternalplatform
* Ensure KWin was build with the CMake option
KWIN_BUILD_EGL_STREAM_BACKEND=ON (this is the default)
* Start a plasma wayland session with the environment variable
KWIN_DRM_USE_EGL_STREAMS set
* Ensure output from KWin OpenGL initialization indicates the NVIDIA EGL
driver is in use (as opposed to Mesa / llvmpipe).
* Desktop should be fully functional and perform smoothly.
Reviewers: #kwin, romangg, davidedmundson
Reviewed By: #kwin, romangg, davidedmundson
Subscribers: kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D18570
2019-04-15 14:26:22 +00:00
|
|
|
bool present(DrmBuffer *buffer, DrmOutput *output);
|
2015-04-09 12:49:32 +00:00
|
|
|
|
|
|
|
int fd() const {
|
|
|
|
return m_fd;
|
|
|
|
}
|
2018-03-28 23:27:21 +00:00
|
|
|
Outputs outputs() const override;
|
|
|
|
Outputs enabledOutputs() const override;
|
|
|
|
QVector<DrmOutput*> drmOutputs() const {
|
2015-04-17 09:13:31 +00:00
|
|
|
return m_outputs;
|
|
|
|
}
|
2018-03-28 23:27:21 +00:00
|
|
|
QVector<DrmOutput*> drmEnabledOutputs() const {
|
2017-11-21 12:04:30 +00:00
|
|
|
return m_enabledOutputs;
|
|
|
|
}
|
2018-03-28 23:27:21 +00:00
|
|
|
|
2019-08-31 08:27:04 +00:00
|
|
|
void enableOutput(DrmOutput *output, bool enable);
|
2019-08-28 18:54:37 +00:00
|
|
|
|
2016-08-31 12:00:31 +00:00
|
|
|
QVector<DrmPlane*> planes() const {
|
|
|
|
return m_planes;
|
|
|
|
}
|
2017-05-09 19:29:10 +00:00
|
|
|
QVector<DrmPlane*> overlayPlanes() const {
|
|
|
|
return m_overlayPlanes;
|
|
|
|
}
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2019-08-31 08:27:04 +00:00
|
|
|
void createDpmsFilter();
|
2016-02-15 14:40:25 +00:00
|
|
|
void checkOutputsAreOn();
|
|
|
|
|
2017-05-09 19:00:33 +00:00
|
|
|
// QPainter reuses buffers
|
|
|
|
bool deleteBufferAfterPageFlip() const {
|
|
|
|
return m_deleteBufferAfterPageFlip;
|
|
|
|
}
|
2016-08-31 12:00:31 +00:00
|
|
|
// returns use of AMS, default is not/legacy
|
|
|
|
bool atomicModeSetting() const {
|
|
|
|
return m_atomicModeSetting;
|
|
|
|
}
|
|
|
|
|
2016-08-19 14:09:18 +00:00
|
|
|
void setGbmDevice(gbm_device *device) {
|
|
|
|
m_gbmDevice = device;
|
|
|
|
}
|
|
|
|
gbm_device *gbmDevice() const {
|
|
|
|
return m_gbmDevice;
|
|
|
|
}
|
|
|
|
|
[platforms/drm] EGLStream DRM Backend Initial Implementation
Summary:
This is the initial implementation of a DRM backend based on the EGLDevice,
EGLOutput, and EGLStream extensions, supporting NVIDIA graphics hardware using
their proprietary driver. The new backend will be used if the environment
variable KWIN_DRM_USE_EGL_STREAMS is set. On initialization, it will attempt to
create an EGLDevice based on the DRM device currently in use and create
EGLOutputs and EGLStreams for any attached displays. These are used to control
presentation of the final composited frame. Additionally, it will register the
wl_eglstream_controller Wayland interface so that native EGL windows created by
clients can be attached to an EGLStream allowing buffer contents to be shared
with the compositor as a GL texture.
At this time there are two known bugs in the NVIDIA driver's EGL implementation
affecting desktop functionality. The first can result in tooltip windows drawn
by plasmashell to contain incorrect contents. The second prevents KWayland from
being able to query the format of EGLStream-backed buffers which interferes
with the blur effect. Fixes for both of these are currently in development and
should appear in an upcoming NVIDIA driver release.
Additionally, hardware cursors are currently not supported with this backend.
Enabling them causes the desktop to intermittently hang for several seconds.
This is also likely a bug in the NVIDIA DRM-KMS implementation but the root
cause is still under investigation.
Test Plan:
On a system with an NVIDIA graphics card running a recent release of their
proprietary driver
* Ensure the nvidia_drm kernel module is loaded with the option "modeset=1"
("# cat /sys/module/nvidia_drm/parameters/modeset" should print "Y")
* Ensure EGL external platform support is installed
https://github.com/NVIDIA/eglexternalplatform
* Ensure KWin was build with the CMake option
KWIN_BUILD_EGL_STREAM_BACKEND=ON (this is the default)
* Start a plasma wayland session with the environment variable
KWIN_DRM_USE_EGL_STREAMS set
* Ensure output from KWin OpenGL initialization indicates the NVIDIA EGL
driver is in use (as opposed to Mesa / llvmpipe).
* Desktop should be fully functional and perform smoothly.
Reviewers: #kwin, romangg, davidedmundson
Reviewed By: #kwin, romangg, davidedmundson
Subscribers: kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D18570
2019-04-15 14:26:22 +00:00
|
|
|
QByteArray devNode() const {
|
|
|
|
return m_devNode;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if HAVE_EGL_STREAMS
|
|
|
|
bool useEglStreams() const {
|
|
|
|
return m_useEglStreams;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-10-15 20:24:49 +00:00
|
|
|
QVector<CompositingType> supportedCompositors() const override;
|
|
|
|
|
2017-11-07 19:12:51 +00:00
|
|
|
QString supportInformation() const override;
|
|
|
|
|
2020-05-20 14:26:15 +00:00
|
|
|
bool isCursorEnabled() const {
|
|
|
|
return m_cursorEnabled;
|
|
|
|
};
|
|
|
|
|
2016-02-15 14:40:25 +00:00
|
|
|
public Q_SLOTS:
|
2016-02-15 15:30:22 +00:00
|
|
|
void turnOutputsOn();
|
2016-02-15 14:40:25 +00:00
|
|
|
|
2015-04-09 12:49:32 +00:00
|
|
|
Q_SIGNALS:
|
2017-11-21 12:04:30 +00:00
|
|
|
/**
|
|
|
|
* Emitted whenever an output is removed/disabled
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2015-04-24 06:15:55 +00:00
|
|
|
void outputRemoved(KWin::DrmOutput *output);
|
2017-11-21 12:04:30 +00:00
|
|
|
/**
|
|
|
|
* Emitted whenever an output is added/enabled
|
2019-07-29 18:58:33 +00:00
|
|
|
*/
|
2015-04-24 06:15:55 +00:00
|
|
|
void outputAdded(KWin::DrmOutput *output);
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2016-10-20 08:21:54 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
void doHideCursor() override;
|
|
|
|
void doShowCursor() override;
|
|
|
|
|
2015-04-09 12:49:32 +00:00
|
|
|
private:
|
2015-04-13 07:23:03 +00:00
|
|
|
static void pageFlipHandler(int fd, unsigned int frame, unsigned int sec, unsigned int usec, void *data);
|
2015-04-09 12:49:32 +00:00
|
|
|
void openDrm();
|
2015-04-15 16:26:25 +00:00
|
|
|
void activate(bool active);
|
|
|
|
void reactivate();
|
|
|
|
void deactivate();
|
2020-04-07 11:24:08 +00:00
|
|
|
bool updateOutputs();
|
2015-04-13 14:25:34 +00:00
|
|
|
void setCursor();
|
|
|
|
void updateCursor();
|
2020-04-02 16:18:01 +00:00
|
|
|
void moveCursor(Cursor *cursor, const QPoint &pos);
|
2015-04-13 14:25:34 +00:00
|
|
|
void initCursor();
|
2015-11-02 08:34:32 +00:00
|
|
|
void readOutputsConfiguration();
|
2019-07-05 17:38:32 +00:00
|
|
|
void writeOutputsConfiguration();
|
2015-11-02 08:34:32 +00:00
|
|
|
QByteArray generateOutputConfigurationUuid() const;
|
2015-04-24 06:15:55 +00:00
|
|
|
DrmOutput *findOutput(quint32 connector);
|
2019-08-31 08:27:04 +00:00
|
|
|
void updateOutputsEnabled();
|
2015-04-09 12:49:32 +00:00
|
|
|
QScopedPointer<Udev> m_udev;
|
2015-04-24 06:15:55 +00:00
|
|
|
QScopedPointer<UdevMonitor> m_udevMonitor;
|
2015-04-09 12:49:32 +00:00
|
|
|
int m_fd = -1;
|
|
|
|
int m_drmId = 0;
|
[DRM plugin] Remember static kernel objects, amplify use of DrmCrtc
To get an image from KWin to the screen in the DRM pipeline we combine a CRTC,
an encoder and a connector. These objects are static in the sense, that they
represent real hardware on the graphics card, which doesn't change in a
session. See here for more details:
https://01.org/linuxgraphics/gfx-docs/drm/gpu/drm-kms.html
Until now we used DrmOutput as the main representation for such an active
rendering pipeline. I.e. it gets created and destroyed on hot plug events of
displays. On the other side we had no fixed representation of the static kernel
objects throughout the lifetime of KWin. This has several disadvantages:
* We always need to query all available static objects on an hot plug event.
* We can't manipulate the frame buffer of a CRTC after an output has been
disconnected
* Adding functionality for driving multiple displays on a single CRTC (i.e.
cloning) would be difficult
* We can't destroy the last frame buffer on display disconnect because the CRTC
still accesses it and have therefore a memory leak on every display disconnect
This patch solves these issues by storing representations of all available CRTC
and Connector objects in DrmBackend on init via DrmCrtc and DrmConnector
instances. On an hotplug event these vectors are looped for a fitting CRTC and
Connector combinations. Buffer handling is moved to the respective CRTC
instance. All changes in overview:
* Query all available CRTCs and Connectors and save for subsequent hotplug
events
* Fix logic errors in `queryResources()`
* Move framebuffers, buffer flip and blank logic in DrmCrtc
* Remove `restoreSaved()`. It isn't necessary and is dangerous if the old
framebuffer was deleted in the meantime. Also could reveal sensitive user
info from old session.
Test Plan:
Login, logout, VT switching, connect and disconnect external monitor, energy
saving mode.
Reviewers: #kwin
Subscribers: kwin, #kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D5118
2017-05-09 18:02:49 +00:00
|
|
|
// all crtcs
|
|
|
|
QVector<DrmCrtc*> m_crtcs;
|
|
|
|
// all connectors
|
|
|
|
QVector<DrmConnector*> m_connectors;
|
2017-11-21 12:04:30 +00:00
|
|
|
// active output pipelines (planes + crtc + encoder + connector)
|
2015-04-14 09:25:16 +00:00
|
|
|
QVector<DrmOutput*> m_outputs;
|
2017-11-21 12:04:30 +00:00
|
|
|
// active and enabled pipelines (above + wl_output)
|
|
|
|
QVector<DrmOutput*> m_enabledOutputs;
|
|
|
|
|
2017-05-09 19:00:33 +00:00
|
|
|
bool m_deleteBufferAfterPageFlip;
|
2016-08-31 12:00:31 +00:00
|
|
|
bool m_atomicModeSetting = false;
|
2016-05-25 09:24:45 +00:00
|
|
|
bool m_cursorEnabled = false;
|
2017-11-05 10:59:24 +00:00
|
|
|
QSize m_cursorSize;
|
2015-04-14 09:25:16 +00:00
|
|
|
int m_pageFlipsPending = 0;
|
2015-04-15 16:26:25 +00:00
|
|
|
bool m_active = false;
|
[platforms/drm] EGLStream DRM Backend Initial Implementation
Summary:
This is the initial implementation of a DRM backend based on the EGLDevice,
EGLOutput, and EGLStream extensions, supporting NVIDIA graphics hardware using
their proprietary driver. The new backend will be used if the environment
variable KWIN_DRM_USE_EGL_STREAMS is set. On initialization, it will attempt to
create an EGLDevice based on the DRM device currently in use and create
EGLOutputs and EGLStreams for any attached displays. These are used to control
presentation of the final composited frame. Additionally, it will register the
wl_eglstream_controller Wayland interface so that native EGL windows created by
clients can be attached to an EGLStream allowing buffer contents to be shared
with the compositor as a GL texture.
At this time there are two known bugs in the NVIDIA driver's EGL implementation
affecting desktop functionality. The first can result in tooltip windows drawn
by plasmashell to contain incorrect contents. The second prevents KWayland from
being able to query the format of EGLStream-backed buffers which interferes
with the blur effect. Fixes for both of these are currently in development and
should appear in an upcoming NVIDIA driver release.
Additionally, hardware cursors are currently not supported with this backend.
Enabling them causes the desktop to intermittently hang for several seconds.
This is also likely a bug in the NVIDIA DRM-KMS implementation but the root
cause is still under investigation.
Test Plan:
On a system with an NVIDIA graphics card running a recent release of their
proprietary driver
* Ensure the nvidia_drm kernel module is loaded with the option "modeset=1"
("# cat /sys/module/nvidia_drm/parameters/modeset" should print "Y")
* Ensure EGL external platform support is installed
https://github.com/NVIDIA/eglexternalplatform
* Ensure KWin was build with the CMake option
KWIN_BUILD_EGL_STREAM_BACKEND=ON (this is the default)
* Start a plasma wayland session with the environment variable
KWIN_DRM_USE_EGL_STREAMS set
* Ensure output from KWin OpenGL initialization indicates the NVIDIA EGL
driver is in use (as opposed to Mesa / llvmpipe).
* Desktop should be fully functional and perform smoothly.
Reviewers: #kwin, romangg, davidedmundson
Reviewed By: #kwin, romangg, davidedmundson
Subscribers: kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D18570
2019-04-15 14:26:22 +00:00
|
|
|
QByteArray m_devNode;
|
|
|
|
#if HAVE_EGL_STREAMS
|
|
|
|
bool m_useEglStreams = false;
|
|
|
|
#endif
|
2016-08-31 12:00:31 +00:00
|
|
|
// all available planes: primarys, cursors and overlays
|
|
|
|
QVector<DrmPlane*> m_planes;
|
2017-05-09 19:29:10 +00:00
|
|
|
QVector<DrmPlane*> m_overlayPlanes;
|
2016-02-15 14:40:25 +00:00
|
|
|
QScopedPointer<DpmsInputEventFilter> m_dpmsFilter;
|
2016-08-19 14:09:18 +00:00
|
|
|
gbm_device *m_gbmDevice = nullptr;
|
2015-04-14 09:25:16 +00:00
|
|
|
};
|
|
|
|
|
2016-02-15 14:40:25 +00:00
|
|
|
|
2015-04-09 12:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|