This bug was fixed in the package mesa - 12.0.1-3ubuntu2 --------------- mesa (12.0.1-3ubuntu2) yakkety; urgency=medium
* debian/rules: Work around gcc ICE on ppc64el by forcing -O2. -- Adam Conrad <adcon...@ubuntu.com> Fri, 22 Jul 2016 16:46:48 -0600 ** Changed in: mesa (Ubuntu) Status: New => Fix Released -- You received this bug notification because you are a member of Desktop Packages, which is subscribed to mesa in Ubuntu. https://bugs.launchpad.net/bugs/1473901 Title: egl-platform-mir.patch: Incorrect (backwards) pixel formats are accepted Status in mesa package in Ubuntu: Fix Released Bug description: egl-platform-mir.patch: Incorrect (backwards) pixel formats are accepted. I noticed this recently. GBM reports some pixel formats as supported but if you use them the colours come out backwards. Turns out it's just our patch reporting incorrect format support ... --- a/src/gbm/backends/dri/gbm_dri.c +++ b/src/gbm/backends/dri/gbm_dri.c @@ -528,9 +528,11 @@ gbm_dri_is_format_supported(struct gbm_d switch (format) { case GBM_BO_FORMAT_XRGB8888: case GBM_FORMAT_XRGB8888: + case GBM_FORMAT_XBGR8888: <-------- Wrong. Delete this. break; case GBM_BO_FORMAT_ARGB8888: case GBM_FORMAT_ARGB8888: + case GBM_FORMAT_ABGR8888: <--------- Wrong. Delete this if (usage & GBM_BO_USE_SCANOUT) return 0; break; To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1473901/+subscriptions -- Mailing list: https://launchpad.net/~desktop-packages Post to : desktop-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~desktop-packages More help : https://help.launchpad.net/ListHelp