From mboxrd@z Thu Jan 1 00:00:00 1970
From: bugzilla-daemon-CC+yJ3UmIYqDUpFQwHEjaQ@public.gmane.org
Subject: [Bug 111199] New: Bug in dither.depth property set
Date: Tue, 23 Jul 2019 09:38:33 +0000
Message-ID:
Bug ID
111199
Summary
Bug in dither.depth property set
Product
xorg
Version
unspecified
Hardware
Other
OS
All
Status
NEW
Severity
normal
Priority
medium
Component
Driver/nouveau
Assignee
nouveau@lists.freedesktop.org
Reporter
max.kammerer@yahoo.com
QA Contact
xorg-team@lists.x.org
There is probably a bug in dither.depth property set cause its=
value compared
with dither.mode:
//nouveau_connector.c
if (property =3D=3D disp->dithering_mode) {
if (asyc->dither.mode !=3D val) {
asyc->dither.mode =3D val;
asyc->set.dither =3D true;
}
} else
if (property =3D=3D disp->dithering_depth) {
if (asyc->dither.mode !=3D val) { //Should be dither.depth
asyc->dither.depth =3D val;
asyc->set.dither =3D true; //triggers dithering regardless of di=
ther.mode
set above. Copy/Paste from above? Should be removed?
}
}