From d6c828c65a5ff4b768491e9cc0a115c70ec38a44 Mon Sep 17 00:00:00 2001 From: Laszlo Agocs Date: Thu, 7 Sep 2017 17:22:22 +0200 Subject: kms: Rename the plane index workaround vars appropriately ...and purge support from eglfs_kms. That path never worked, the environment variable was meant for the NVIDIA backend only. Task-number: QTBUG-63058 Change-Id: I8cf47168d5878e18eb22c839d56e2d48cbb4fdad Reviewed-by: Andy Nichols --- .../deviceintegration/eglfs_kms/qeglfskmsgbmscreen.cpp | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmscreen.cpp') diff --git a/src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmscreen.cpp b/src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmscreen.cpp index ac6f8944ed..e8a94ed997 100644 --- a/src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmscreen.cpp +++ b/src/plugins/platforms/eglfs/deviceintegration/eglfs_kms/qeglfskmsgbmscreen.cpp @@ -191,8 +191,6 @@ void QEglFSKmsGbmScreen::ensureModeSet(uint32_t fb) { QKmsOutput &op(output()); const int fd = device()->fd(); - const uint32_t w = op.modes[op.mode].hdisplay; - const uint32_t h = op.modes[op.mode].vdisplay; if (!op.mode_set) { op.mode_set = true; @@ -225,19 +223,6 @@ void QEglFSKmsGbmScreen::ensureModeSet(uint32_t fb) qErrnoWarning(errno, "Could not set DRM mode for screen %s", qPrintable(name())); } } - - if (!op.plane_set) { - op.plane_set = true; - if (op.wants_plane) { - qCDebug(qLcEglfsKmsDebug, "Setting plane %u", op.plane_id); - int ret = drmModeSetPlane(fd, op.plane_id, op.crtc_id, - uint32_t(-1), 0, - 0, 0, w, h, - 0 << 16, 0 << 16, w << 16, h << 16); - if (ret) - qErrnoWarning(errno, "drmModeSetPlane failed"); - } - } } void QEglFSKmsGbmScreen::waitForFlip() -- cgit v1.2.3