[ANNOUNCE] xorg-server 1.11.2

2011-11-04 Thread Jeremy Huddleston
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 == Description == This is the second release candidate for xorg-server 1.11.2 and contains fixes for various crashes and correctness issues fixed since the previous release. == Known Issues == Important issues are listed in the 1.11 tracker bug:

Re: rotate display

2011-11-04 Thread Neil Whelchel
This has been a major thorn in my side with Nvidia. Their driver does not support rotating a single display, it is all or nothing. The work-around is to use Xinerama. I have included the related parts of my config file, monitor 0 is normal and monitors 1 and 2 are rotated. As far as I can tell,

xrender issue

2011-11-04 Thread Hans-Peter Budek
Hi, if I set an alpha-map to a destination picture via XRenderChangePicture(s-Dpy, Dest, CPAlphaMap, Att) ; the following XRenderComposite() call crash my X-server: Backtrace: [ 9911.289] 0: /usr/X11R6/bin/X (xorg_backtrace+0x37) [0x80e8997] [ 9911.289] Segmentation fault at address (nil) [

Re: Simulating a mouse click

2011-11-04 Thread Markus Kramer
Thanks for the help. I was able to fix this now by setting the time member correctly. I had it set to CurrentTime before, but that didn't fix it. Cheers, Markus On 03.11.2011 00:34, Peter Hutterer wrote: On Wed, Nov 02, 2011 at 03:27:42PM +0100, Markus Kramer wrote: Hi, I'm attempting to

Re: xrender issue

2011-11-04 Thread Chris Wilson
On Fri, 04 Nov 2011 11:26:07 +0100, Hans-Peter Budek peter.bu...@gmx.de wrote: Hi, if I set an alpha-map to a destination picture via XRenderChangePicture(s-Dpy, Dest, CPAlphaMap, Att) ; the following XRenderComposite() call crash my X-server: Backtrace: [ 9911.289] 0: /usr/X11R6/bin/X

Re: xrender issue

2011-11-04 Thread Chris Wilson
On Fri, 04 Nov 2011 15:11:28 +0100, Hans-Peter Budek peter.bu...@gmx.de wrote: Chris Wilson wrote: Do you mind describing you use-case for alphamaps and could you create a little benchmark for your workload? -Chris I´am programming a animated crossfade from one window to

Re: xrender issue

2011-11-04 Thread Hans-Peter Budek
Chris Wilson wrote: Do you mind describing you use-case for alphamaps and could you create a little benchmark for your workload? -Chris I´am programming a animated crossfade from one window to another. Both windows are not created by my application. The content of both windows is

Re: xrender issue

2011-11-04 Thread Hans-Peter Budek
Hi, So what I think you want to achieve is: dst = a * srcA + (1-a) * srcB yes, that's my intension which can be acheived (and hitting the accelerated paths) with: Picture a = XRenderCreateSolidFill(dpy, (XRenderColor){.alpha = 0x * Fade}); Picture ia =