Re: [PATCH 09/18] Xfbdev: Treat 1 bpp pseudocolor as monochrome

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: >> Geert Uytterhoeven writes: >>> miCreateDefColormap() only preallocates black and white pixels if >>> depth > 1. >> >> I think you should also set pScreen->whitePixel and pScreen->blackPixel to >> match the MONO01 definitions; it seems like you're taking advantage of

Re: [PATCH 16/18] Xfbdev: Force shadowfb for frame buffers with non-packed pixels

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Signed-off-by: Geert Uytterhoeven Reviewed-by: Keith Packard -- keith.pack...@intel.com pgpxbXh9GmZHZ.pgp Description: PGP signature

Re: [PATCH 15/18] Xfbdev: Reject unsupported frame buffer types

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Signed-off-by: Geert Uytterhoeven Reviewed-by: Keith Packard -- keith.pack...@intel.com pgpMGy7Iurcjs.pgp Description: PGP signature

Re: [PATCH 11/18] Shadow: Add support for Atari iplan2p4

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Add support for Atari-style interleaved bitplanes, with 2 bytes interleave > and 4 bits per pixel. > > Signed-off-by: Geert Uytterhoeven Acked-by: Keith Packard -- keith.pack...@intel.com pgpSewQXbRdfB.pgp Description: PGP signature

Re: [PATCH 10/18] Shadow: Add c2p core

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Add Chunky-to-Planar core functionality, to be used by the Atari and Amiga > (interleaved) bitplanes code. > > Signed-off-by: Geert Uytterhoeven Acked-by: Keith Packard -- keith.pack...@intel.com pgpr7otIa9DvX.pgp Description: PGP signature

Re: [PATCH 13/18] Shadow: Add support for Amiga afb4

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Add support for Amiga-style bitplanes, with 4 bits per pixel. > > Signed-off-by: Geert Uytterhoeven Acked-by: Keith Packard -- keith.pack...@intel.com pgp2KilpHD2zS.pgp Description: PGP signature

Re: [PATCH 14/18] Shadow: Add support for Amiga afb8

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Add support for Amiga-style bitplanes, with 8 bits per pixel. > > Signed-off-by: Geert Uytterhoeven Acked-by: Keith Packard -- keith.pack...@intel.com pgp_hu2ysh7nT.pgp Description: PGP signature

Re: [PATCH 18/18] Xfbdev: Wire up Amiga afb4 and afb8 support

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Add support for Amiga-style bitplanes, with 4 or 8 bits per pixel. > > Signed-off-by: Geert Uytterhoeven Acked-by: Keith Packard -- keith.pack...@intel.com pgpbyY2VDVWOJ.pgp Description: PGP signature

Re: [PATCH 17/18] Xfbdev: Wire up Atari iplan2p4 and iplan2p8 support

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Add support for Atari-style interleaved bitplanes, with 2 bytes interleave > and 4 or 8 bits per pixel. > > Signed-off-by: Geert Uytterhoeven Reviewed-by: Keith Packard -- keith.pack...@intel.com pgp2j3dLVVE5x.pgp Description: PGP signature

Re: [PATCH 12/18] Shadow: Add support for Atari iplan2p8

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Add support for Atari-style interleaved bitplanes, with 2 bytes interleave > and 8 bits per pixel. > > Signed-off-by: Geert Uytterhoeven Acked-by: Keith Packard -- keith.pack...@intel.com pgpr7RtVwmA0I.pgp Description: PGP signature

Re: [PATCH 00/18] Xfbdev Atari and Amiga support

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > This patch series revives some of the support for Atari and Amiga that existed > in XF68_FBDev, but got lost after XFree86 3.x. I've reviewed the patches which may affect other machines, and looked briefly over the patches which don't. If you want to stick this seque

Re: [PATCH 09/18] Xfbdev: Treat 1 bpp pseudocolor as monochrome

2013-04-08 Thread Geert Uytterhoeven
On Mon, Apr 8, 2013 at 6:55 PM, Keith Packard wrote: > Geert Uytterhoeven writes: >> miCreateDefColormap() only preallocates black and white pixels if >> depth > 1. > > I think you should also set pScreen->whitePixel and pScreen->blackPixel to > match the MONO01 definitions; it seems like you're

Re: [PATCH 07/18] Xfbdev: Handle unset var.bits_per_pixel

2013-04-08 Thread Geert Uytterhoeven
On Mon, Apr 8, 2013 at 6:47 PM, Keith Packard wrote: > Geert Uytterhoeven writes: > >> Older frame buffer devices may not fill in var.bits_per_pixel, in which >> case it must be calculated by the application. > > I think you mean 'fix.line_length' here. Woops, you're right. Thanks! Gr{oetje,eet

Re: [PATCH 09/18] Xfbdev: Treat 1 bpp pseudocolor as monochrome

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > miCreateDefColormap() only preallocates black and white pixels if > depth > 1. I think you should also set pScreen->whitePixel and pScreen->blackPixel to match the MONO01 definitions; it seems like you're taking advantage of the behavior of miCreateDefColormap withou

Re: [PATCH 05/18] KDrive: Bail out if screen initialization failed

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Else we may get a segmentation fault later. Reviewed-by: Keith Packard -- keith.pack...@intel.com pgpoQ8KPKYy6p.pgp Description: PGP signature

Re: [PATCH 06/18] Xfbdev: Make char *fbdevDevicePath const

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > This fixes: > > hw/kdrive/fbdev/fbdev.c: In function 'fbdevInitialize': > hw/kdrive/fbdev/fbdev.c:41:25: warning: assignment discards 'const' qualifier > from pointer target type [enabled by default] > > Signed-off-by: Geert Uytterhoeven Reviewed-by: Keith Packard

Re: [PATCH 03/18] [RFC] mi: Avoid division by zero errors in miInitializeColormap()

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Question: Should we restrict depth < 3 to grayscale visuals instead? > For monochrome this is already needed, as miCreateDefColormap() only > preallocates black and white pixels if depth > 1. Yes, it doesn't make sense to offer static color and true color for this ha

Re: [PATCH 08/18] Xfbdev: Add support for monochrome visuals

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Monochrome supports StaticGray, with hardcoded black and white pixels. > > Signed-off-by: Geert Uytterhoeven Reviewed-by: Keith Packard -- keith.pack...@intel.com pgpZKwnqFd6fD.pgp Description: PGP signature

Re: [PATCH 07/18] Xfbdev: Handle unset var.bits_per_pixel

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Older frame buffer devices may not fill in var.bits_per_pixel, in which > case it must be calculated by the application. I think you mean 'fix.line_length' here. -- keith.pack...@intel.com pgppVTPRtmTsR.pgp Description: PGP signature

Re: [PATCH 02/18] miext/shadow/shpacked.c: Remove unused PickBit() define

2013-04-08 Thread Keith Packard
Geert Uytterhoeven writes: > Signed-off-by: Geert Uytterhoeven Reviewed-by: Keith Packard -- keith.pack...@intel.com pgp_lGvcfzixc.pgp Description: PGP signature

xorg-server: Changes to 'ubuntu'

2013-04-08 Thread Maarten Lankhorst
debian/changelog | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) New commits: commit 408107230a7a231c1278ec337e364a55b2bb423a Author: Maarten Lankhorst Date: Mon Apr 8 12:21:12 2013 +0200 release to raring diff --git a/debian/changelog b/debian/changelog index 3dbb5

Bug#529178: xserver-xorg-video-ati: Suffering from this bug + Possible mitigation

2013-04-08 Thread Pablo Oliveira
Dear Alex, >> > On Wed, Apr 3, 2013 at 3:34 PM, Alex Deucher wrote: >> >> [...] >> >> Does a newer kernel help? 3.2 is pretty old. There were >> >> a number of display related fixes that went into 3.7 for example. Before trying with 3.7, to have a conclusive report, I tried to reproduce on 3.2

mesa: Changes to 'ubuntu+1'

2013-04-08 Thread Timo Aaltonen
debian/changelog |2 ++ debian/patches/series |3 +++ debian/patches/vbo-fix-crash.diff | 29 + 3 files changed, 34 insertions(+) New commits: commit 304a86694e531ed9980cb761762f93c662fd4304 Author: Timo Aaltonen Date: Mon Apr

xorg-server: Changes to 'ubuntu+1'

2013-04-08 Thread Maarten Lankhorst
Rebased ref, commits from common ancestor: -- To UNSUBSCRIBE, email to debian-x-requ...@lists.debian.org with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org Archive: http://lists.debian.org/e1up5pl-ef...@vasks.debian.org

xorg-server: Changes to 'ubuntu+1'

2013-04-08 Thread Maarten Lankhorst
Xi/exevents.c | 135 + dix/eventconvert.c | 19 +++ dix/events.c | 13 + dix/touch.c| 62 +++- include/eventstr.h |1 include/input.h|2 6 files changed, 149 insertions(+), 83 de

xorg-server: Changes to 'ubuntu'

2013-04-08 Thread Maarten Lankhorst
debian/changelog|4 debian/patches/drm_device_keep_trying.patch | 138 2 files changed, 106 insertions(+), 36 deletions(-) New commits: commit 57a259eac11f6baa46b837ca3d2d4d993b507bbc Author: Maarten Lankhorst Date: Mon Apr 8 08:45