[PATCH 2/2] modesetting: add dynamic connector hotplug support (MST)

2015-01-27 Thread Dave Airlie
From: Dave Airlie This is ported from the same code in the ati and intel drivers, It uses the same option name as nvidia and the other DDXes to disable tearing down outputs as it is hard to avoid racing with clients. Signed-off-by: Dave Airlie --- hw/xfree86/drivers/modesetting/driver.c

[PATCH 1/2] modesetting: stop caching mode resources

2015-01-27 Thread Dave Airlie
From: Dave Airlie There is no need to cache the mode resources and with dynamic connectors for mst support we don't want to. So first clean that up before adding dynamic connector support. Signed-off-by: Dave Airlie --- hw/xfree86/drivers/modesetting/drmmode_display.c | 36 +---

add MST dynamic connector support to modesetting

2015-01-27 Thread Dave Airlie
These two patches just port the mst support code to modesetting, I wrote this on the out of tree driver and the same code is in ati and intel, so it should work fine. Dave. ___ xorg-devel@lists.x.org: X.Org development Archives: http://lists.x.org/archiv

Re: [PATCH: randrproto] Add Monitors to spec, start version 1.5 specification.

2015-01-27 Thread Evgeny Zubok
And what about DPMS per output? I know some people were interested in this feature. Previously I saw an Adam's attempt [1] to add this feature to RandR protocol but it didn't appear in the specs - neither in 1.4, nor in 1.5. [1] http://lists.x.org/archives/xorg-devel/2009-June/001097.html __

Re: [PATCH libXt] asprintf needs _GNU_SOURCE on some platforms

2015-01-27 Thread Alan Coopersmith
On 01/27/15 04:44 AM, Daniel Stone wrote: Hi, On 26 January 2015 at 16:51, Rob Clark wrote: diff --git a/configure.ac b/configure.ac index 3633ec6..e60e88d 100644 --- a/configure.ac +++ b/configure.ac @@ -66,7 +66,7 @@ fi AC_SUBST([CC_FOR_BUILD]) DEFAULT_CPPFLAGS_FOR_BUILD="${CPPFLAGS}"

Re: [PATCH synaptics 2/2] Add a delay between the second button down-up event of double taps

2015-01-27 Thread Gabriele Mazzotta
On Tuesday 27 January 2015 16:37:44 Peter Hutterer wrote: > sorry about the delay, busy here. > > On Fri, Jan 16, 2015 at 02:09:38PM +0100, Gabriele Mazzotta wrote: > > On Friday 16 January 2015 13:24:31 Peter Hutterer wrote: > > > On Thu, Jan 15, 2015 at 10:04:17PM +0100, Gabriele Mazzotta wrote:

multitouch input handling help required

2015-01-27 Thread Vikas Patil
Hi, I am running GENIVI Layermanager (i.e. window manager and compositor based on GLES2.0 and X11) which doesn't support multi-touch event (i.e. Xi_TouchBegin, XI_TouchUpdate, XI_TouchEnd) handling and I have a requirement to support X11 based application with multi-touch (i.e. pinch and zoom use

[PATCH xserver] On linux use instead of

2015-01-27 Thread Felix Janda
is obsolete. This fixes building with musl libc. Signed-off-by: Felix Janda --- hw/xfree86/os-support/xf86_OSlib.h | 4 1 file changed, 4 deletions(-) diff --git a/hw/xfree86/os-support/xf86_OSlib.h b/hw/xfree86/os-support/xf86_OSlib.h index 6190fe6..95c3a73 100644 --- a/hw/xfree86/os-su

RE: multitouch input handling help required

2015-01-27 Thread Friedrich, Eugen (ADITG/SW1)
Hello Vikas, In genivi we stopped a active development on LayerManager also a X11 is not widely used in the automotive. The current way to go for us is a wayland compositor and we working on implementing ilm API on top of weston. Therefore there is no effort spent to realize you use-case, sor

Re: [PATCH libXt] asprintf needs _GNU_SOURCE on some platforms

2015-01-27 Thread Daniel Stone
Hi, On 26 January 2015 at 16:51, Rob Clark wrote: > diff --git a/configure.ac b/configure.ac > index 3633ec6..e60e88d 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -66,7 +66,7 @@ fi > AC_SUBST([CC_FOR_BUILD]) > DEFAULT_CPPFLAGS_FOR_BUILD="${CPPFLAGS}" > AC_CHECK_FUNC(asprintf, > - [DE

Re: [PATCH] os: Fix timer race conditions

2015-01-27 Thread Nikhil Mahale
On Saturday, January 24, 2015 05:07:49 PM Aaron Plattner wrote: > On 01/23/2015 10:42 AM, Keith Packard wrote: > > * PGP Signed by an unknown key > > > > Nikhil Mahale writes: > >> On Monday, December 29, 2014 02:35:53 PM Keith Packard wrote: > Old Signed by an unknown key > >>> > >>> Nikhi

Re: [PATCH v2] glamor: only use (un)pack_subimage when available

2015-01-27 Thread Maarten Lankhorst
Op 27-01-15 om 11:06 schreef Maarten Lankhorst: > Check for GL_EXT_unpack_subimage and GL_NV_pack_subimage to > check if GL_(UN)PACK_ROW_LENGTH is available. Set the offsets > manually to prevent calls to GL_(UN)PACK_SKIP_*. > > Check support for GL_NV_pack_subimage as suggested by Matt Turner. > >

Re: [PATCH] Fix a crash with XDMCP error handler

2015-01-27 Thread Daniel Martin
On 25 January 2015 at 20:22, Colin Harrison wrote: > Hi, > > I much prefer Jon Turney's more universal fix to this problem. > > http://lists.x.org/archives/xorg-devel/2014-November/044568.html > > and having tested Jon's fix it can have > Reviewed-by: Colin Harrison When the R-b tag gets added t

[PATCH v2] glamor: only use (un)pack_subimage when available

2015-01-27 Thread Maarten Lankhorst
Check for GL_EXT_unpack_subimage and GL_NV_pack_subimage to check if GL_(UN)PACK_ROW_LENGTH is available. Set the offsets manually to prevent calls to GL_(UN)PACK_SKIP_*. Check support for GL_NV_pack_subimage as suggested by Matt Turner. Signed-off-by: Maarten Lankhorst Changes since v1: glamor