maintainer-feedback requested: [Bug 247138] graphics/mesa-dri: No blur effect in PLasma 5 and QML (again)

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Wed Jun 10 08:14:17 UTC 2020


Bugzilla Automation <bugzilla at FreeBSD.org> has asked freebsd-x11 mailing list
<x11 at FreeBSD.org> for maintainer-feedback:
Bug 247138: graphics/mesa-dri: No blur effect in PLasma 5 and QML (again)
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=247138



--- Description ---
After upgrading to 19.0.8_2, I again had problems with transparency in Plasma 5
and QML. The same bug was 230772:
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230772 . You may see examples
in this bug.

Simple code to reproduce a bug with any picture:

import QtQuick 2.0
import QtGraphicalEffects 1.0

Item {
    width: 300
    height: 300

    Image {
	id: bug
	source: "images/bug.png"
	sourceSize: Qt.size(parent.width, parent.height)
	smooth: true
	visible: false
    }

    FastBlur {
	anchors.fill: bug
	source: bug
	radius: 64.0
    }
}


More information about the freebsd-x11 mailing list