summaryrefslogtreecommitdiff
path: root/kde-plasma/kwin/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-10 13:34:01 +0100
committerV3n3RiX <venerix@koprulu.sector>2022-10-10 13:34:01 +0100
commitbba7ed73af4fe3b333cb970dc40a9098e2d1c54b (patch)
tree4a2377c9096a6e85935bc1b24a50c09537fbb3ca /kde-plasma/kwin/files
parentf69024d0d689548234c6173dc2d8a5bb466b0525 (diff)
gentoo auto-resync : 10:10:2022 - 13:34:00
Diffstat (limited to 'kde-plasma/kwin/files')
-rw-r--r--kde-plasma/kwin/files/kwin-5.24.6-drm-fix-blob-updating.patch38
-rw-r--r--kde-plasma/kwin/files/kwin-5.24.6-emit-rowsChanged.patch30
-rw-r--r--kde-plasma/kwin/files/kwin-5.24.6-fix-color-picker.patch40
3 files changed, 0 insertions, 108 deletions
diff --git a/kde-plasma/kwin/files/kwin-5.24.6-drm-fix-blob-updating.patch b/kde-plasma/kwin/files/kwin-5.24.6-drm-fix-blob-updating.patch
deleted file mode 100644
index 45d231a70f1b..000000000000
--- a/kde-plasma/kwin/files/kwin-5.24.6-drm-fix-blob-updating.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 3af37c8a29af36eb773b0684237d61b2bd6b81f9 Mon Sep 17 00:00:00 2001
-From: Xaver Hugl <xaver.hugl@gmail.com>
-Date: Thu, 4 Aug 2022 15:36:26 +0200
-Subject: [PATCH] backends/drm: fix blob updating
-
-Two things about the code were wrong:
-1. m_current is used in updateBlob() but was only updated afterwards
-2. the assumption that the property having the same ID means it has the
-same blob contents is not always true
-
-BUG: 449285
-
-
-(cherry picked from commit 97939ceae864aef2f50e117496f548555877b4ea)
----
- src/backends/drm/drm_property.cpp | 6 ++----
- 1 file changed, 2 insertions(+), 4 deletions(-)
-
-diff --git a/src/backends/drm/drm_property.cpp b/src/backends/drm/drm_property.cpp
-index 8ab0dc0e5a..b2a2deda12 100644
---- a/src/backends/drm/drm_property.cpp
-+++ b/src/backends/drm/drm_property.cpp
-@@ -112,10 +112,8 @@ bool DrmProperty::needsCommit() const
-
- void DrmProperty::setCurrent(uint64_t value)
- {
-- if (m_current != value) {
-- updateBlob();
-- m_current = value;
-- }
-+ m_current = value;
-+ updateBlob();
- }
-
- uint64_t DrmProperty::current() const
---
-GitLab
-
diff --git a/kde-plasma/kwin/files/kwin-5.24.6-emit-rowsChanged.patch b/kde-plasma/kwin/files/kwin-5.24.6-emit-rowsChanged.patch
deleted file mode 100644
index 79ee3cc547ce..000000000000
--- a/kde-plasma/kwin/files/kwin-5.24.6-emit-rowsChanged.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-From 4f419afe307f808ab648a6d6c473ff3cd0b9d836 Mon Sep 17 00:00:00 2001
-From: ivan tkachenko <me@ratijas.tk>
-Date: Sun, 10 Jul 2022 15:17:26 +0300
-Subject: [PATCH] [kcm/kwindesktop] Emit rowsChanged signal to fix default
- state highlighting
-
-Without this, the rowsChanged signal wasn't emitting at startup, so the
-binding `highlight: kcm.desktopsModel.rows !== 2` didn't work correctly.
-
-FIXED-IN: 5.24.7 5.25.3 5.26
----
- src/kcmkwin/kwindesktop/desktopsmodel.cpp | 2 ++
- 1 file changed, 2 insertions(+)
-
-diff --git a/src/kcmkwin/kwindesktop/desktopsmodel.cpp b/src/kcmkwin/kwindesktop/desktopsmodel.cpp
-index cf147a7981..f8dd8d6260 100644
---- a/src/kcmkwin/kwindesktop/desktopsmodel.cpp
-+++ b/src/kcmkwin/kwindesktop/desktopsmodel.cpp
-@@ -457,6 +457,8 @@ void DesktopsModel::getAllAndConnect(const QDBusMessage &msg)
- m_names = m_serverSideNames;
- m_rows = m_serverSideRows;
- endResetModel();
-+
-+ Q_EMIT rowsChanged();
- }
-
- Q_EMIT readyChanged();
---
-GitLab
-
diff --git a/kde-plasma/kwin/files/kwin-5.24.6-fix-color-picker.patch b/kde-plasma/kwin/files/kwin-5.24.6-fix-color-picker.patch
deleted file mode 100644
index 545bc96d0230..000000000000
--- a/kde-plasma/kwin/files/kwin-5.24.6-fix-color-picker.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From aa5fc42349052d040f45aca40749edce80ff8f1f Mon Sep 17 00:00:00 2001
-From: ivan tkachenko <me@ratijas.tk>
-Date: Fri, 22 Jul 2022 18:43:45 +0300
-Subject: [PATCH] effects/colorpicker: Fix picking colors
-
-Due to the wrong buffer format, the function failed with
-GL_INVALID_OPERATION error, which was silently ignored by the effect.
-It resulted in the constant phantom color being returned over and over
-again.
-
-Co-Authored-By: David Edmundson <kde@davidedmundson.co.uk>
-BUG: 454974
-FIXED-IN: 5.24.7, 5.25.4, 5.26
-(cherry picked from commit df6331b60aa03e65f146e93d0229cdc6dc956bbd)
----
- src/effects/colorpicker/colorpicker.cpp | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/src/effects/colorpicker/colorpicker.cpp b/src/effects/colorpicker/colorpicker.cpp
-index bc60225838..0625b3de47 100644
---- a/src/effects/colorpicker/colorpicker.cpp
-+++ b/src/effects/colorpicker/colorpicker.cpp
-@@ -61,12 +61,12 @@ void ColorPickerEffect::postPaintScreen()
- effects->postPaintScreen();
-
- if (m_scheduledPosition != QPoint(-1, -1) && (!m_paintedScreen || m_paintedScreen->geometry().contains(m_scheduledPosition))) {
-- uint8_t data[3];
-+ uint8_t data[4];
- const QRect geo = GLRenderTarget::virtualScreenGeometry();
- const QPoint screenPosition(m_scheduledPosition.x() - geo.x(), m_scheduledPosition.y() - geo.y());
- const QPoint texturePosition(screenPosition.x() * GLRenderTarget::virtualScreenScale(), (geo.height() - screenPosition.y()) * GLRenderTarget::virtualScreenScale());
-
-- glReadnPixels(texturePosition.x(), texturePosition.y(), 1, 1, GL_RGB, GL_UNSIGNED_BYTE, 3, data);
-+ glReadnPixels(texturePosition.x(), texturePosition.y(), 1, 1, GL_RGBA, GL_UNSIGNED_BYTE, 4, data);
- QDBusConnection::sessionBus().send(m_replyMessage.createReply(QColor(data[0], data[1], data[2])));
- m_picking = false;
- m_scheduledPosition = QPoint(-1, -1);
---
-GitLab
-