Re: [PATCH synaptics] Drop touch events from the driver

2015-06-30 Thread Peter Hutterer
On Tue, Jun 30, 2015 at 10:57:21PM +0200, Loïc Yhuel wrote: Le 17/06/2015 05:14, Peter Hutterer a écrit : Drop the touch events from the synaptics driver. This allows us to switch the touchpad fully over to look like a relative device, thus also removing the bug that changes the touchpad speed

[PULL] xserver updates

2015-06-30 Thread Adam Jackson
Series includes a bunch of static and API cleanup (incorporating Aaron's feedback on the ProcVector and randr bits), an old series to unifdef ROOTLESS in a bunch of places, a GLX fix for software servers, and support for GLX_ARB_context_flush_control. --- The following changes since commit

Re: [PATCH] Fix NO_LOCAL_CLIENT_CRED build

2015-06-30 Thread Ray Strode
Hi, This is a build fix for MinGW ... Move the check if NO_LOCAL_CLIENT_CRED should be defined to before it's first use. Well, Alan wondered if anyone is actually using NO_LOCAL_CLIENT_CRED, now we know! Patch doesn't look wrong to me, but I wonder if maybe it should get put in

[git pull] Xwayland fix

2015-06-30 Thread Olivier Fourdan
Hi Keith, Could you please pull from the following git tree the fix for Xwayland that Chris contributed for bug https://bugs.freedesktop.org/show_bug.cgi?id=91072? It's been reviewed by Michel Dänzer and the commit message contains the R-b. Cheers, Olivier --- The following changes since

Re: [PATCH synaptics] Drop touch events from the driver

2015-06-30 Thread Loïc Yhuel
Le 17/06/2015 05:14, Peter Hutterer a écrit : Drop the touch events from the synaptics driver. This allows us to switch the touchpad fully over to look like a relative device, thus also removing the bug that changes the touchpad speed whenever a monitor is added/removed in. Hi, I applied

glamor regression caused by 9c679d06 (Re: xserver: Branch 'master' - 5 commits)

2015-06-30 Thread Michel Dänzer
On 30.06.2015 13:02, Keith Packard wrote: commit 9c679d06055cc62aa9209318705e87dc33fba4c8 Author: Eric Anholt e...@anholt.net Date: Sun May 31 16:07:01 2015 -0700 glamor: Skip actual FBO setup in our glyph atlas. VC4 (and many GLES2 renderers) can't render to GL_ALPHA, so

[git pull] glamor code cleanups

2015-06-30 Thread Eric Anholt
As I was getting ready to send out another cleanups series, I found this old one laying around, reviewed by Ken back in April. It merges cleanly with the performance series I sent yesterday, and xtests successfully, too. The following changes since commit

[PATCH 7/7] glamor: Use ARRAY_SIZE in a couple more places for consistency.

2015-06-30 Thread Eric Anholt
Signed-off-by: Eric Anholt e...@anholt.net --- glamor/glamor_program.c | 6 ++ glamor/glamor_render.c | 5 + 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/glamor/glamor_program.c b/glamor/glamor_program.c index 5619216..416c54a 100644 --- a/glamor/glamor_program.c +++

[PATCH 4/7] glamor: Drop dead glamor_es2_pixmap_read_prepare().

2015-06-30 Thread Eric Anholt
It's been unused since I killed glamor_download_pixmap_to_cpu(). Signed-off-by: Eric Anholt e...@anholt.net --- glamor/glamor_pixmap.c | 70 -- glamor/glamor_priv.h | 6 - 2 files changed, 76 deletions(-) diff --git a/glamor/glamor_pixmap.c

[PATCH 2/7] glamor: Fix up some weird formatting in _glamor_create_fbo_array().

2015-06-30 Thread Eric Anholt
Signed-off-by: Eric Anholt e...@anholt.net --- glamor/glamor_fbo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glamor/glamor_fbo.c b/glamor/glamor_fbo.c index cab2ff9..acb5d0d 100644 --- a/glamor/glamor_fbo.c +++ b/glamor/glamor_fbo.c @@ -424,8 +424,8 @@

[PATCH 5/7] glamor: Make a bunch of single-file glamor functions static.

2015-06-30 Thread Eric Anholt
Signed-off-by: Eric Anholt e...@anholt.net --- glamor/glamor_largepixmap.c | 10 +++--- glamor/glamor_priv.h| 22 -- glamor/glamor_render.c | 4 ++-- 3 files changed, 9 insertions(+), 27 deletions(-) diff --git a/glamor/glamor_largepixmap.c

[PATCH 6/7] glamor: Mark a bunch of single-file data static.

2015-06-30 Thread Eric Anholt
This gives the compiler a chance to optimize when the data is never changed -- for example, with pict_format_combine_tab, the compiler ends up inlining the 24 bytes of data into just 10 more bytes of code. Signed-off-by: Eric Anholt e...@anholt.net --- glamor/glamor_core.c| 2 +-

[PATCH 1/7] glamor: Drop a redundant check.

2015-06-30 Thread Eric Anholt
Above, we've already checked for -fbo -fbo-fb and returned. Signed-off-by: Eric Anholt e...@anholt.net --- glamor/glamor_pixmap.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/glamor/glamor_pixmap.c b/glamor/glamor_pixmap.c index f2bf223..0e51550 100644 ---

[PATCH 3/7] glamor: Restore the hook to glamor_composite_rectangles().

2015-06-30 Thread Eric Anholt
It was apparently accidentally dropped in keithp's removal of _nf functions in 90d326fcc687e6d6d4b308f6272ededcf8145a17. Signed-off-by: Eric Anholt e...@anholt.net --- glamor/glamor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glamor/glamor.c b/glamor/glamor.c index

Re: glamor regression caused by 9c679d06 (Re: xserver: Branch 'master' - 5 commits)

2015-06-30 Thread Eric Anholt
Michel Dänzer mic...@daenzer.net writes: On 30.06.2015 13:02, Keith Packard wrote: commit 9c679d06055cc62aa9209318705e87dc33fba4c8 Author: Eric Anholt e...@anholt.net Date: Sun May 31 16:07:01 2015 -0700 glamor: Skip actual FBO setup in our glyph atlas. VC4 (and many