Re: [PATCH xserver 1/2] meson: Enable SUN-DES-1 auth code

2018-01-18 Thread Adam Jackson
On Wed, 2018-01-17 at 19:02 +, Jon Turney wrote: > On 08/01/2018 20:50, Adam Jackson wrote: > > --- > > include/meson.build | 1 + > > meson_options.txt | 1 + > > os/meson.build | 4 > > 3 files changed, 6 insertions(+) > > After this, I needed something like the attached.

Re: [PATCH xserver 1/2] meson: Enable SUN-DES-1 auth code

2018-01-18 Thread Eric Anholt
Jon Turney writes: > On 08/01/2018 20:50, Adam Jackson wrote: >> --- >> include/meson.build | 1 + >> meson_options.txt | 1 + >> os/meson.build | 4 >> 3 files changed, 6 insertions(+) > > After this, I needed something like the attached. I'm

Re: [PATCH xserver] meson.build: Fix hw/xwin build when dependencies are installed in a non-default location

2018-01-18 Thread Eric Anholt
Jon Turney writes: > Signed-off-by: Jon Turney Reviewed-by: Eric Anholt signature.asc Description: PGP signature ___ xorg-devel@lists.x.org: X.Org development Archives:

Re: [PATCH] xfree86: add default modes for 16:9 and 16:10

2018-01-18 Thread Adam Jackson
On Mon, 2018-01-15 at 22:09 +0100, Martin Wilck wrote: > On Tue, 2018-01-09 at 20:33 +0100, Martin Wilck wrote: > > Improve the user experience for users with wide screens by adding > > standard > > 16:9 and 16:10 modes to extramodes, as suggested previously > >

Re: sync: Fix diffgreater comparison

2018-01-18 Thread Adam Jackson
On Thu, 2018-01-18 at 10:12 -0800, Keith Packard wrote: > David Weinehall writes: > > > xsync: Fix diffgreater comparison > > > > While transitioning from CARD64 to int64, > > the GreaterThan call was mistakenly transformed into ">=". > > Part of this was fixed

Re: [PATCH xserver 00/10] Implement RandR 1.6 (leases and non-desktop)

2018-01-18 Thread Keith Packard
Adam Jackson writes: > Well it's still Xephyr, right? Use XI2 to grab whichever devices you > want from the host Xorg. Hrm. I wasn't really thinking of using Xephyr as I need xf86-video-modesetting to drive the leased fd anyways. I guess I can go figure out how the libinput

Re: sync: Fix diffgreater comparison

2018-01-18 Thread Keith Packard
David Weinehall writes: > xsync: Fix diffgreater comparison > > While transitioning from CARD64 to int64, > the GreaterThan call was mistakenly transformed into ">=". > Part of this was fixed already in > commit 8060196a3e80a3c0ad2c0abbe459416821cd366c > > This

Re: [PATCH] xfree86: add default modes for 16:9 and 16:10

2018-01-18 Thread Michael Cronenworth
On 01/15/2018 03:09 PM, Martin Wilck wrote: On Tue, 2018-01-09 at 20:33 +0100, Martin Wilck wrote: Improve the user experience for users with wide screens by adding standard 16:9 and 16:10 modes to extramodes, as suggested previously

Re: [PATCH xserver 00/10] Implement RandR 1.6 (leases and non-desktop)

2018-01-18 Thread Adam Jackson
On Wed, 2018-01-17 at 21:24 -0800, Keith Packard wrote: > Adam Jackson writes: > > > Port Xephyr to EGL and create its EGLDisplay from the lease fd? That'd > > be a cute way to do multiseat-on-one-GPU. Unifying the glamor backends > > on EGL and dropping GLX would be a nice

[PATCH xserver] meson.build: Fix hw/xwin build when dependencies are installed in a non-default location

2018-01-18 Thread Jon Turney
Signed-off-by: Jon Turney --- hw/xwin/glx/meson.build | 2 +- hw/xwin/winclipboard/meson.build | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/xwin/glx/meson.build b/hw/xwin/glx/meson.build index e9969536d..57cce039d 100644 ---

sync: Fix diffgreater comparison

2018-01-18 Thread David Weinehall
xsync: Fix diffgreater comparison While transitioning from CARD64 to int64, the GreaterThan call was mistakenly transformed into ">=". Part of this was fixed already in commit 8060196a3e80a3c0ad2c0abbe459416821cd366c This patch fixes the remaining issue. Signed-off-by: David Weinehall

Re: [PATCH xserver] xwayland: avoid a crash with empty window pixmaps

2018-01-18 Thread Olivier Fourdan
Hi Daniel, On Thu, Jan 18, 2018 at 12:22 PM, Daniel Stone wrote: > Odd; how could we have a realized 0x0 window which also has damage? I > Hehe, yeap, I had the same question, but didn't find the answer... :) > wonder if this isn't actually a UAF where the xwl_window

Re: [PATCH xserver] xwayland: avoid a crash with empty window pixmaps

2018-01-18 Thread Daniel Stone
Hi Olivier, On 18 January 2018 at 10:41, Olivier Fourdan wrote: > This is a rare occurrence of a crash in Xwayland for which I don't have > the reproducing steps, just a core file. > > The backtrace looks as follow: > > [...] > #6 > #7

[PATCH xserver] xwayland: avoid a crash with empty window pixmaps

2018-01-18 Thread Olivier Fourdan
This is a rare occurrence of a crash in Xwayland for which I don't have the reproducing steps, just a core file. The backtrace looks as follow: #0 raise () from /usr/lib64/libc.so.6 #1 abort () from /usr/lib64/libc.so.6 #2 OsAbort () at utils.c:1361 #3 AbortServer () at log.c:877

Re: [PATCH xserver 00/10] Implement RandR 1.6 (leases and non-desktop)

2018-01-18 Thread Keith Packard
Adam Jackson writes: > I was imagining xrandr could acquire the lease and pause until it was > ^C'd, just to exercise whether the state transitions work without > needing to do anything interesting with the lease. I wrote some test cases that do that in test/randr/randr_lease.c;

Re: [PATCH xserver 1/2] meson: Enable SUN-DES-1 auth code

2018-01-18 Thread Jon Turney
On 08/01/2018 20:50, Adam Jackson wrote: --- include/meson.build | 1 + meson_options.txt | 1 + os/meson.build | 4 3 files changed, 6 insertions(+) After this, I needed something like the attached. From 6f11847ccf0cc5833e73dba79380ec6ae5123782 Mon Sep 17 00:00:00 2001

Re: [PATCH xserver 00/10] Implement RandR 1.6 (leases and non-desktop)

2018-01-18 Thread Adam Jackson
On Tue, 2018-01-16 at 14:45 -0800, Keith Packard wrote: > Adam Jackson writes: > > > > Changes since the last series: > > > > > > * Merged non-desktop and lease support into a single patch > > >sequence. They have a dependency on reporting output connection > > >status,