Hello community,
here is the log from the commit of package plasma5-workspace for
openSUSE:Factory checked in at 2020-06-30 21:53:06
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/plasma5-workspace (Old)
and /work/SRC/openSUSE:Factory/.plasma5-workspace.new.3060 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "plasma5-workspace"
Tue Jun 30 21:53:06 2020 rev:140 rq:817487 version:5.19.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/plasma5-workspace/plasma5-workspace.changes
2020-06-25 15:06:58.781275999 +0200
+++
/work/SRC/openSUSE:Factory/.plasma5-workspace.new.3060/plasma5-workspace.changes
2020-06-30 21:53:15.830164490 +0200
@@ -1,0 +2,6 @@
+Sat Jun 27 09:57:16 UTC 2020 - Fabian Vogt <[email protected]>
+
+- Add patch to speed up artwork shader compilation in VMs (boo#1172763):
+ * 0001-mediacontroller-Use-half-the-samples-for-better-perf.patch
+
+-------------------------------------------------------------------
New:
----
0001-mediacontroller-Use-half-the-samples-for-better-perf.patch
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ plasma5-workspace.spec ++++++
--- /var/tmp/diff_new_pack.EoUJDo/_old 2020-06-30 21:53:17.334169144 +0200
+++ /var/tmp/diff_new_pack.EoUJDo/_new 2020-06-30 21:53:17.334169144 +0200
@@ -43,6 +43,7 @@
# PATCH-FIX-UPSTREAM
Patch1: 0001-Port-applets-to-use-PlasmaExtras.PlaceholderMessage.patch
Patch2: 0001-Fix-DBus-service-used-in-shutdown-interface.patch
+Patch3: 0001-mediacontroller-Use-half-the-samples-for-better-perf.patch
# PATCHES 501-??? are PATCH-FIX-OPENSUSE
Patch501: 0001-Use-qdbus-qt5.patch
Patch502: 0001-Ignore-default-sddm-face-icons.patch
++++++ 0001-mediacontroller-Use-half-the-samples-for-better-perf.patch ++++++
>From c62cc5a9642a9da893f28804a6e06496a1878521 Mon Sep 17 00:00:00 2001
From: Fabian Vogt <[email protected]>
Date: Fri, 26 Jun 2020 17:26:30 +0200
Subject: [PATCH] [mediacontroller] Use half the samples for better performance
with swrast
With swrast (llvmpipe) the artwork blurring is enabled, which takes an eternity
(up to ~15s) to compile the shader. Improve that by only using half the
samples with half the radius, which looks nearly identical.
---
.../mediacontroller/contents/ui/ExpandedRepresentation.qml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/applets/mediacontroller/contents/ui/ExpandedRepresentation.qml
b/applets/mediacontroller/contents/ui/ExpandedRepresentation.qml
index 5653bcc38..2f89d33cc 100644
--- a/applets/mediacontroller/contents/ui/ExpandedRepresentation.qml
+++ b/applets/mediacontroller/contents/ui/ExpandedRepresentation.qml
@@ -165,9 +165,9 @@ Item {
layer.effect: GaussianBlur {
cached: true
- radius: 256
+ radius: 128
deviation: 12
- samples: 129
+ samples: 63
transparentBorder: false
}
--
2.25.1