Re: [PULL] glamor-next

2015-03-25 Thread Michel Dänzer
On 25.03.2015 05:21, Eric Anholt wrote: Keith Packard (13): [...] glamor: Eliminate GLAMOR_USE_SCREEN and GLAMOR_USE_PICTURE_SCREEN glamor: Remove _nf rendering functions glamor: Remove ddx fallback check functions NAK for these changes. I'll be using the *_nf functions in

Re: [PATCH xinit] startx: don't init defaultdisplay to :0

2015-03-25 Thread Hans de Goede
Hi, On 25-03-15 02:50, Peter Hutterer wrote: This is misleading - it is always overwritten after looping through the lock files. Signed-off-by: Peter Hutterer peter.hutte...@who-t.net Looks good to me: Reviewed-by: Hans de Goede hdego...@redhat.com Regards, Hans --- startx.cpp | 2 +-

Re: [PATCH xinit 2/2] startx: Make startx auto display select work with per user /tmp dirs

2015-03-25 Thread Hans de Goede
Hi, On 25-03-15 02:53, Peter Hutterer wrote: On Mon, Mar 23, 2015 at 02:16:13PM +, Jon TURNEY wrote: On 20/03/2015 17:16, Ray Strode wrote: On Fri, Mar 20, 2015 at 10:02 AM, Hans de Goede hdego...@redhat.com wrote: If a separate /tmp per user is used the existing auto display select

Re: [PATCH keyboard] linux: bring our process group to the foreground (#89653)

2015-03-25 Thread Hans de Goede
Hi, On 25-03-15 05:21, Peter Hutterer wrote: Required to make the driver receive keyboard events from the console. X.Org Bug http://bugs.freedesktop.org/show_bug.cgi?id=89653 Signed-off-by: Peter Hutterer peter.hutte...@who-t.net Looks good: Reviewed-by: Hans de Goede hdego...@redhat.com

Re: [PATCH xinit 1/2] startx: Fix startx picking an already used display number when -nolock is used

2015-03-25 Thread Hans de Goede
Hi, On 25-03-15 01:54, Peter Hutterer wrote: On Fri, Mar 20, 2015 at 03:02:35PM +0100, Hans de Goede wrote: Currently startx relies on /tmp/.X?-lock being present for automatically picking a free display number. This does not work if -nolock is used when starting the server, or if the server

Re: [PATCH xinit 2/2] startx: Make startx auto display select work with per user /tmp dirs

2015-03-25 Thread Hans de Goede
Hi, On 25-03-15 14:20, Ray Strode wrote: Hi, You're right I had forgotten that the xauth file needs to contain the displaynr, so there is no easy fix here I'm afraid. That's not true actually. The xauth file can have a display wildcard, but the xauth command doesn't support generating xauth

Re: [PATCH xinit 2/2] startx: Make startx auto display select work with per user /tmp dirs

2015-03-25 Thread Ray Strode
Hi, Now, I've tried to avoid anything xauth-related, but from the little I know: to support displayfd in startx you'd have to communicate back to startx about the $DISPLAY and do the xauth dance before continuing with the xinit initial client connection. AFAICT, that's the tricky bit about

Re: [PATCH xinit 2/2] startx: Make startx auto display select work with per user /tmp dirs

2015-03-25 Thread Ray Strode
Hi, You're right I had forgotten that the xauth file needs to contain the displaynr, so there is no easy fix here I'm afraid. That's not true actually. The xauth file can have a display wildcard, but the xauth command doesn't support generating xauth files with display wildcards. I think that

[PATCH RFC 0/5] Xephyr input hotplugging support and other additions for single-GPU multiseat

2015-03-25 Thread Laércio de Sousa
This patch series provides some missing parts for completing single-GPU multiseat support for Xephyr. Patches 1, 2, and 5 provide new command-line options to make it easier to launch Xephyr directly from display manager, rather than from within a user session. Patch 4 fixes an issue where Xephyr

RE: [PATCH] glamor: add fallback if NULL EGLConfig is not supported

2015-03-25 Thread Eric Anholt
Zhou, Jammy jammy.z...@amd.com writes: Hi Eric, Thanks for your response. I think some binary blobs don't support EGL_MESA_configless extension. We can argue that they should add this support, but it will be good if we can also have some fallback there. You wrote the patch, so presumably

[PATCH RFC 3/5] kdrive: introduce input hotplugging support (udev backend provided) (#33140)

2015-03-25 Thread Laércio de Sousa
This patch introduces a command-line option -input-hotplug for kdrive-based applications, which can be used to enable input hotplugging support, instead of passing explicit -keybd and/or -mouse options. It also includes udev backend implementation for input hotplugging support. Another patches

[PATCH RFC 1/5] ephyr: allow passing explictly host X server display number and/or authorization file path

2015-03-25 Thread Laércio de Sousa
This patch introduces two command-line options for Xephyr: * -host-display: set Xephyr DISPLAY environment variable to host X server display number * -host-auth:set Xephyr XAUTHORITY environment variable to host X server authorization file path These

[PATCH RFC 5/5] kdrive: add options to set default XKB properties

2015-03-25 Thread Laércio de Sousa
This patch introduces convenient command-line options -xkbrules, -xkbmodel, -xkblayout, -xkbvariant, and -xkboptions, to set default values for these properties. These options can be handful in cases where corresponding values can't be taken from devices' udev properties, and compile-time default

[PATCH RFC 4/5] kdrive: update evdev keyboard LEDs (#22302)

2015-03-25 Thread Laércio de Sousa
From: Mikhail Krivtsov mikhail.krivt...@gmail.com When one hits {Num,Caps,Scroll}Lock key on a Xephyr's keyboard, keyboard itself works as expected but LEDs are not updated and always stay in off. Currently logical LEDs are propagated to physical keyboard LEDs for CoreKeyboard only. All kdrive

[PATCH RFC 2/5] ephyr: ignore -sharevts and -layout seatXXXX command-line options

2015-03-25 Thread Laércio de Sousa
Multiseat-capable display managers commonly pass command-line options like -sharevts or -layout seat to Xorg server, but Xephyr currently refuses to start if these options are passed to it, which may break Xephyr-based single-GPU multiseat setups. The simplest solution to avoid this problem

Re: [PATCH] Byte-swapping and size-checking generator all-in-one

2015-03-25 Thread Matt Turner
On Mon, Mar 23, 2015 at 11:16 PM, Asal Mirzaieva asalle@gmail.com wrote: On 17.03.15 09:25, Peter Hutterer wrote: whoah, that is a lot of tabs... I assumed tab = 4 spaces, as it is defined in http://www.x.org/wiki/CodingStyle/. As python strictly requires tabs and not space-indents, I

Re: [PATCH xinit 2/2] startx: Make startx auto display select work with per user /tmp dirs

2015-03-25 Thread Julien Cristau
On Wed, Mar 25, 2015 at 09:15:12 -0400, Ray Strode wrote: Hi, Now, I've tried to avoid anything xauth-related, but from the little I know: to support displayfd in startx you'd have to communicate back to startx about the $DISPLAY and do the xauth dance before continuing with the xinit

Re: [PULL] glamor-next

2015-03-25 Thread Michel Dänzer
On 26.03.2015 04:14, Eric Anholt wrote: Michel Dänzer mic...@daenzer.net writes: On 25.03.2015 05:21, Eric Anholt wrote: Keith Packard (13): [...] glamor: Eliminate GLAMOR_USE_SCREEN and GLAMOR_USE_PICTURE_SCREEN glamor: Remove _nf rendering functions glamor: Remove ddx

Re: [PULL] glamor-next

2015-03-25 Thread Eric Anholt
Michel Dänzer mic...@daenzer.net writes: On 26.03.2015 04:14, Eric Anholt wrote: Michel Dänzer mic...@daenzer.net writes: On 25.03.2015 05:21, Eric Anholt wrote: Keith Packard (13): [...] glamor: Eliminate GLAMOR_USE_SCREEN and GLAMOR_USE_PICTURE_SCREEN glamor: Remove _nf

Interest in GSoC 2015 at X.Org Foundation

2015-03-25 Thread Guy-Daniel Tiku
Hello everyone, I am Tiku Guy-Daniel ( guy-D on IRC ), a postgraduate student from the University of Buea, Cameroon who will like to contribute to the X.Org Foundation's coding project through the Google Summer of Code 2015 program. I've looked at the Ideas page,am interested in working on the

RE: [PATCH] glamor: add fallback if NULL EGLConfig is not supported

2015-03-25 Thread Zhou, Jammy
Yep. I tried the Catalyst driver. Regards, Jammy -Original Message- From: Eric Anholt [mailto:e...@anholt.net] Sent: Thursday, March 26, 2015 3:14 AM To: Zhou, Jammy; xorg-devel@lists.x.org Cc: Guo, Kai Subject: RE: [PATCH] glamor: add fallback if NULL EGLConfig is not supported Zhou,

Re: [PULL] glamor-next

2015-03-25 Thread Michel Dänzer
On 26.03.2015 10:47, Eric Anholt wrote: Michel Dänzer mic...@daenzer.net writes: On 26.03.2015 04:14, Eric Anholt wrote: Michel Dänzer mic...@daenzer.net writes: On 25.03.2015 05:21, Eric Anholt wrote: Keith Packard (13): [...] glamor: Eliminate GLAMOR_USE_SCREEN and

Re: [PULL] glamor-next

2015-03-25 Thread Michel Dänzer
On 26.03.2015 04:14, Eric Anholt wrote: Michel Dänzer mic...@daenzer.net writes: On 25.03.2015 05:21, Eric Anholt wrote: Keith Packard (13): [...] glamor: Eliminate GLAMOR_USE_SCREEN and GLAMOR_USE_PICTURE_SCREEN glamor: Remove _nf rendering functions glamor: Remove ddx

Re: [PULL] glamor-next

2015-03-25 Thread Eric Anholt
Michel Dänzer mic...@daenzer.net writes: On 26.03.2015 04:14, Eric Anholt wrote: Michel Dänzer mic...@daenzer.net writes: On 25.03.2015 05:21, Eric Anholt wrote: Keith Packard (13): [...] glamor: Eliminate GLAMOR_USE_SCREEN and GLAMOR_USE_PICTURE_SCREEN glamor: Remove _nf

Re: [PULL] glamor-next

2015-03-25 Thread Michel Dänzer
On 26.03.2015 11:33, Eric Anholt wrote: Michel Dänzer mic...@daenzer.net writes: On 26.03.2015 04:14, Eric Anholt wrote: Michel Dänzer mic...@daenzer.net writes: On 25.03.2015 05:21, Eric Anholt wrote: Keith Packard (13): [...] glamor: Eliminate GLAMOR_USE_SCREEN and