Re: Fwd: [PATCH libXrender] Fix request length calculation for XRenderCompositeText32

2013-11-23 Thread Keith Packard
Clemens Eisserer writes: > Is there anything else for me to do, to get my patch integrated into > libXrender? I pushed it. Thanks! -- keith.pack...@intel.com pgpRlA8qI9QIv.pgp Description: PGP signature ___ xorg-devel@lists.x.org: X.Org development

Re: [PATCH 0/2] Don't use xshmfence unless supported by the driver

2013-11-23 Thread Keith Packard
Fredrik Höglund writes: > Yeah, that fixes it. With this patch the request generates a BadMatch > error. Merged. e700053..f160400 master -> master -- keith.pack...@intel.com pgp720kDL5gMS.pgp Description: PGP signature ___ xorg-devel@lists.x.or

Re: [PATCH] glx/glxdri2: Unwrap EnterVT/LeaveVT upon CloseScreen

2013-11-23 Thread Keith Packard
Chris Wilson writes: > Bugzilla: > https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-intel/+bug/1235516 > Signed-off-by: Chris Wilson Merged. 6d5883b..e700053 master -> master -- keith.pack...@intel.com pgpIrt_cq9UV3.pgp Description: PGP signature ___

Re: [PATCH] DIX/ConfineTo: Improve algorithm to jump to the nearest point inside

2013-11-23 Thread Keith Packard
Keith Packard writes: > Egbert Eich writes: > >> ConfineToShape does not work well: The cursor often times doesn't jump >> to the point closest to the current cursor position outside the shape. >> This patch fixes this. > > I came up with something a bit simpler which confines the point to each

Re: [PATCH v3] xnest: Ignore GetImage() error in xnestGetImage()

2013-11-23 Thread Keith Packard
Egbert Eich writes: > v3: Don't call Xsync before restoring error handler as any errors > generated by XGetImage() should be processed when this call > returns as suggested by Jamey Sharp v2 of this patch got merged, and this useful change did not. I've added it. 6403cbb..6d5883b ma

Fwd: [PATCH libXrender] Fix request length calculation for XRenderCompositeText32

2013-11-23 Thread Clemens Eisserer
Keith sent his review to my private mail address, please see the forwarded message below. Is there anything else for me to do, to get my patch integrated into libXrender? Thanks, Clemens -- Forwarded message -- From: Keith Packard Date: 2013/11/20 Subject: Re: [PATCH libXrender

[PATCH:libXi] Remove fallback for _XEatDataWords, require libX11 1.6 for it

2013-11-23 Thread Alan Coopersmith
From: Michael Joost _XEatDataWords was orignally introduced with the May 2013 security patches, and in order to ease the process of delivering those, fallback versions of _XEatDataWords were included in the X extension library patches so they could be applied to older versions that didn't have li

[PATCH:showfont 2/3] Print which option was in error along with usage message

2013-11-23 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith --- showfont.c | 35 ++- 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/showfont.c b/showfont.c index 05895ac..cef5f1d 100644 --- a/showfont.c +++ b/showfont.c @@ -347,10 +347,16 @@ show_info( } static void -us

[PATCH:showfont 3/3] Add -version flag to print program version

2013-11-23 Thread Alan Coopersmith
Signed-off-by: Alan Coopersmith --- man/showfont.man |3 +++ showfont.c | 12 ++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/man/showfont.man b/man/showfont.man index 47d077c..d513bdd 100644 --- a/man/showfont.man +++ b/man/showfont.man @@ -73,6 +73,9 @@

[PATCH:showfont 1/3] Rename row pointer to avoid shadowing row integer variable

2013-11-23 Thread Alan Coopersmith
Fixes gcc warning: showfont.c: In function ‘show_glyphs’: showfont.c:261:18: warning: declaration of ‘row’ shadows a previous local [-Wshadow] showfont.c:178:10: warning: shadowed declaration is here [-Wshadow] Signed-off-by: Alan Coopersmith --- showfont.c |4 ++-- 1 file changed, 2 insert