| Summary: |
Bug in dither.depth property set: Value compared to dither.mode instead of dither.depth |
| Product: |
xorg
|
Reporter: |
Max <max.kammerer> |
| Component: |
Driver/nouveau | Assignee: |
Nouveau Project <nouveau> |
| Status: |
RESOLVED
MOVED
|
QA Contact: |
Xorg Project Team <xorg-team> |
| Severity: |
normal
|
|
|
| Priority: |
medium
|
Keywords: |
janitor |
| Version: |
unspecified | |
|
| Hardware: |
Other | |
|
| OS: |
All | |
|
| Whiteboard: |
|
|
i915 platform:
|
|
i915 features:
|
|
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.
There is probably a bug in dither.depth property set cause its value compared with dither.mode: //nouveau_connector.c if (property == disp->dithering_mode) { if (asyc->dither.mode != val) { asyc->dither.mode = val; asyc->set.dither = true; } } else if (property == disp->dithering_depth) { if (asyc->dither.mode != val) { //Should be dither.depth asyc->dither.depth = val; asyc->set.dither = true; //triggers dithering regardless of dither.mode set above. Copy/Paste from above? Should be removed? } }