Re: [PATCH] Make pm2's xv driver collect options like all other drivers.

2010-11-11 Thread Jesse Adkins
On Thu, Nov 11, 2010 at 8:04 PM, Matt Turner wrote: > Wow. A real patch for pm2? Are you compile testing or do you have real > hardware? > It's not breaking my build and I don't have the hardware. I really just want glint to not use xf86FindXvOptions (in favor of more standard arg parsing). It's

Re: [PATCH] Make pm2's xv driver collect options like all other drivers.

2010-11-11 Thread Matt Turner
Wow. A real patch for pm2? Are you compile testing or do you have real hardware? On Thu, Nov 11, 2010 at 10:48 PM, Jesse Adkins wrote: > The current method of argument collection is to collect options from different > ports of a VideoAdaptor record. Specifically, the ports had to be named > 'Inpu

[PATCH] Make pm2's xv driver collect options like all other drivers.

2010-11-11 Thread Jesse Adkins
The current method of argument collection is to collect options from different ports of a VideoAdaptor record. Specifically, the ports had to be named 'Input' for input options, and 'Output' for output options. This resulted in three groups of options, requiring people to know what VideoAdaptor do

Re: [PULL] xquartz build fix, couple of minor fixes

2010-11-11 Thread Keith Packard
On Fri, 12 Nov 2010 12:21:32 +1000, Peter Hutterer wrote: > Cyril Brulebois (1): > test: Fix missing xkbsrv.h include. > > Jeremy Huddleston (1): > XQuartz: Build-fixes for XQuartz for recent input API changes > > Peter Hutterer (3): > Xi: move property reset from extension s

[PULL] xquartz build fix, couple of minor fixes

2010-11-11 Thread Peter Hutterer
The two most important ones in this set: - xquartz build fix (broken by ABI 12) - make check fix (broken by the new valuator mask code) one compiler warning, more AEI cleanup, one XI property garbage fix from a while ago. The following changes since commit da66119593b63ef82ae6fa2e034ccd0856b03a80

Re: [PATCH] XQuartz: Build-fixes for XQuartz for recent input API changes

2010-11-11 Thread Peter Hutterer
On Thu, Nov 11, 2010 at 05:23:33PM -0800, Jeremy Huddleston wrote: > > Signed-off-by: Peter Hutterer > Signed-off-by: Jeremy Huddleston Reviewed-by: Peter Hutterer merged into my tree, I'll send keith a pull request in a minute. sorry about the build breaks. Cheers, Peter > --- > hw/xq

[PATCH] XQuartz: Build-fixes for XQuartz for recent input API changes

2010-11-11 Thread Jeremy Huddleston
Signed-off-by: Peter Hutterer Signed-off-by: Jeremy Huddleston --- hw/xquartz/darwin.c |2 -- hw/xquartz/darwinEvents.c |7 --- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/hw/xquartz/darwin.c b/hw/xquartz/darwin.c index 018ce78..fce3b2c 100644 --- a/hw/xquar

Re: build.sh broken on Solaris 10

2010-11-11 Thread Pat Kane
You guys have added some really nice features to build.sh, like "-L", thank you. I would not mind if you required that it be a bash script, just that the 1st line says it is a /bin/sh script. If anyone really thinks that this build.sh script needs to be compatible with a very old /bin/sh I will cr

Re: build.sh broken on Solaris 10

2010-11-11 Thread Gaetan Nadon
On Thu, 2010-11-11 at 23:40 +0100, Cyril Brulebois wrote: > Thomas Dickey (11/11/2010): > > That's probably the bash manpage, since you're quoting from it. > > No, that's dash's. dash has some extra features on top of POSIX as far > as I can tell. See [1], no “local” (except for “locale” ;)) stu

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Michal Suchanek
On 11 November 2010 23:10, Ping Cheng wrote: > On Thu, Nov 11, 2010 at 1:38 PM, Henrik Rydberg wrote: >>> >>> Are we going to do the tocuh and pen aribtration in input-mt.c? I need >>> to understand this to make my patches. >> >> If the pen is implemented as just another contact, it will also be

Re: [PATCH] test: Fix missing xkbsrv.h include.

2010-11-11 Thread Peter Hutterer
On Thu, Nov 11, 2010 at 11:55:55PM +0100, Cyril Brulebois wrote: > Otherwise, building fails with CFLAGS="-Wall -Werror" this way: > | protocol-common.c: In function ‘init_simple’: > | protocol-common.c:159: error: implicit declaration of function > ‘XkbInitPrivates’ > | protocol-common.c:159: err

[PATCH] test: Fix missing xkbsrv.h include.

2010-11-11 Thread Cyril Brulebois
Otherwise, building fails with CFLAGS="-Wall -Werror" this way: | protocol-common.c: In function ‘init_simple’: | protocol-common.c:159: error: implicit declaration of function ‘XkbInitPrivates’ | protocol-common.c:159: error: nested extern declaration of ‘XkbInitPrivates’ Signed-off-by: Cyril Br

Re: [PATCH] Remove 24bpp support

2010-11-11 Thread Keith Packard
On Thu, 11 Nov 2010 10:38:57 -0500, Adam Jackson wrote: > The 24bpp code is very poorly tested, and virtually no modern hardware > implements it. If you need a 24bpp framebuffer, use shadowfb and convert > in the upload hook. I tested the 24bpp fb code when I wrote it; I guess it has rotted awa

Re: [PATCH] dix: fix typo in setting valuator modes (#21548)

2010-11-11 Thread Cyril Brulebois
Peter Hutterer (12/11/2010): > -dev->valuator->axes[axis].mode = mode; > +dev->valuator->axes[i].mode = mode; All tests passed. Mraw, KiBi. signature.asc Description: Digital signature ___ xorg-devel@lists.x.org: X.Org develop

Re: build.sh broken on Solaris 10

2010-11-11 Thread Cyril Brulebois
Thomas Dickey (11/11/2010): > That's probably the bash manpage, since you're quoting from it. No, that's dash's. dash has some extra features on top of POSIX as far as I can tell. See [1], no “local” (except for “locale” ;)) stuff documented there. 1. http://www.opengroup.org/onlinepubs/0096953

[PATCH] dix: fix typo in setting valuator modes (#21548)

2010-11-11 Thread Peter Hutterer
X.Org Bug 31548 --- dix/devices.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dix/devices.c b/dix/devices.c index a4c8e76..708860a 100644 --- a/dix/devices.c +++ b/dix/devices.c @@ -2592,6 +2592,6 @@ void valuator_se

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Ping Cheng
On Thu, Nov 11, 2010 at 1:38 PM, Henrik Rydberg wrote: >> >> Are we going to do the tocuh and pen aribtration in input-mt.c? I need >> to understand this to make my patches. > > If the pen is implemented as just another contact, it will also be treated as > such, and arbitration becomes the same t

Re: build.sh broken on Solaris 10

2010-11-11 Thread Thomas Dickey
On Thu, 11 Nov 2010, Gaetan Nadon wrote: According to "man sh" on my Debian distro: That's probably the bash manpage, since you're quoting from it. -- Thomas E. Dickey http://invisible-island.net ftp://invisible-island.net ___ xorg-devel@lists.x.org

Re: build.sh broken on Solaris 10

2010-11-11 Thread Gaetan Nadon
On Thu, 2010-11-11 at 14:40 -0600, Pat Kane wrote: > The following build.sh lines do not work with Solaris 10 /bin/sh > > local rtn > local needs_config=0 > local line > local module > local component > > looks like build.sh is turning into a bash script, which is

XQuartz buildfailure with recent input changes

2010-11-11 Thread Jeremy Huddleston
Hey Peter, tinderbt ox picked up a build failure in XQuartz with the recent input changes. I'll hopefully have time to take a look at it this weekend, but you probably know what the fix is better than I do since didn't I look at all the recent merges to master. --Jeremy http://tinderbox

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Ping Cheng
On Thu, Nov 11, 2010 at 11:41 AM, Henrik Rydberg wrote: > > Right. Perhaps this is a good time to discuss some additional helper functions > Chris and myself are playing with right now. > > /** >  * input_mt_report_state() - report contact state >  * @dev: input device with allocated MT slots >  *

Re: [PATCH hyperpen] Fixed indentation, dropped trailing whitespaces

2010-11-11 Thread Peter Hutterer
On Thu, Nov 11, 2010 at 04:35:06PM +0100, Manuel Reimer wrote: > Peter Hutterer wrote: > >You know that working on hyperpen automatically makes you the maintainer of > >the driver? Now's the time to run away screaming :) > > So far, I'm not sure, if I will have the time to do bigger changes. > >

Re: [PATCH modular] Remove -f and -r options.

2010-11-11 Thread Peter Hutterer
On Thu, Nov 11, 2010 at 12:23:48PM -0800, Dan Nicholson wrote: > On Fri, Nov 5, 2010 at 7:55 AM, Trevor Woerner wrote: > > From: Trevor Woerner > > > > Since the script includes an --autoresume option, which is essentially > > the combination of the -f and -r options, the individual options not >

Re: [PULL] "-logo" deletion and root window background=None

2010-11-11 Thread Keith Packard
On Thu, 11 Nov 2010 21:49:20 +0200, Tiago Vignatti wrote: > Tiago Vignatti (3): > dix: delete logo hack screen saver > dix: adds support for none root window background > dix: fix root window background behaviour for protocol calls Merged. 88cb61e..da66119 master -> master

build.sh broken on Solaris 10

2010-11-11 Thread Pat Kane
The following build.sh lines do not work with Solaris 10 /bin/sh local rtn local needs_config=0 local line local module local component looks like build.sh is turning into a bash script, which is okay, but if so, please fix the first line of the file. Pat ---

Re: [PATCH modular] Remove -f and -r options.

2010-11-11 Thread Dan Nicholson
On Fri, Nov 5, 2010 at 7:55 AM, Trevor Woerner wrote: > From: Trevor Woerner > > Since the script includes an --autoresume option, which is essentially > the combination of the -f and -r options, the individual options not > necessary anymore by themselves. > > Signed-off-by: Trevor Woerner > --

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Dmitry Torokhov
On Thu, Nov 11, 2010 at 08:41:25PM +0100, Henrik Rydberg wrote: > >> > > >> But, I think ABS_X/Y arbitration should be considered in the kernel to > >> reduce the overhead in userland. > > > > With option 1 you have natural ST arbitration - the first touch gets to > > report (ABS_X, ABS_Y), the r

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Henrik Rydberg
>> >> But, I think ABS_X/Y arbitration should be considered in the kernel to >> reduce the overhead in userland. > > With option 1 you have natural ST arbitration - the first touch gets to > report (ABS_X, ABS_Y), the rest will have to report ABS_MT_* till the > first touch is lifted, right? Ri

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Dmitry Torokhov
On Thu, Nov 11, 2010 at 11:01:11AM -0800, Ping Cheng wrote: > On Thu, Nov 11, 2010 at 12:26 AM, Dmitry Torokhov > wrote: > > > > I do not believe that current protocol design has an issue. MT protocol > > is really for representing devices reporting multiple touches on the same > > working surface

[PULL] "-logo" deletion and root window background=None

2010-11-11 Thread Tiago Vignatti
The following changes since commit 88cb61e1e55c54982b90e2a77465faaac6a0ba89: Peter Hutterer (1): Merge branch 'master' of git+ssh://git.freedesktop.org/git/xorg/xserver into input-api are available in the git repository at: ssh+git://vigna...@people.freedesktop.org/~vignatti/xserver

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Ping Cheng
On Thu, Nov 11, 2010 at 12:26 AM, Dmitry Torokhov wrote: > > I do not believe that current protocol design has an issue. MT protocol > is really for representing devices reporting multiple touches on the same > working surface which means that size stays the same for all touches. When we say mult

Re: [PATCH modular] Remove -f and -r options.

2010-11-11 Thread Gaetan Nadon
On Fri, 2010-11-05 at 10:55 -0400, Trevor Woerner wrote: > From: Trevor Woerner > > Since the script includes an --autoresume option, which is essentially > the combination of the -f and -r options, the individual options not > necessary anymore by themselves. > > Signed-off-by: Trevor Woerner

Re: [PATCH] Enable silent rules for cat and echo.

2010-11-11 Thread Gaetan Nadon
On Thu, 2010-11-11 at 18:38 +0100, Cyril Brulebois wrote: > One gets this: > | GENlf3-xaaBitmap.c > | GENlf3-xaaBitmap.c > | GENlf3-xaaBitmap.c > | GENlf3-xaaBitmap.c > | CC lf3-xaaBitmap.lo > > instead of this: > | echo "#define LSBFIRST" > l3-xaaBitmap.c > | echo "

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Ping Cheng
On Wed, Nov 10, 2010 at 7:57 PM, Chris Bagwell wrote: > On Tue, Nov 9, 2010 at 10:46 PM, Peter Hutterer > wrote: >> On Mon, Nov 08, 2010 at 10:14:56PM -0600, Chris Bagwell wrote: >>> >>> I've copied #2 below and added my own text in "[]" to be sure and >>> clarify text in context of case #2. >>>

[PATCH modular] Remove -f and -r options.

2010-11-11 Thread Trevor Woerner
From: Trevor Woerner Since the script includes an --autoresume option, which is essentially the combination of the -f and -r options, the individual options not necessary anymore by themselves. Signed-off-by: Trevor Woerner --- build.sh | 15 +-- 1 files changed, 1 insertions(+),

Re: Smooth scrolling again

2010-11-11 Thread Simon Thum
On 11/08/10 22:55, Max Schwarz wrote: > Hi Simon, > >> That sounds fine. But how are button events being generated which match >> a potential only-smooth-scrolling input? > I'm not sure I understand your question. I didn't change the generation of > button events in any way. They are just emitted

Re: [PATCH v2 5/5] DRI2: Allow DDX to validate swap_limit changes

2010-11-11 Thread Jesse Barnes
On Mon, 1 Nov 2010 16:22:01 +0200 Pauli Nieminen wrote: > DDX can now implement validation for swap_limit changes to prevent > configurations that are not support in driver. > > Signed-off-by: Pauli Nieminen > CC: Mario Kleiner > --- > hw/xfree86/dri2/dri2.c | 18 +- > hw/x

Re: [PATCH v2 4/5] DRI2: Expose API to set drawable swap limit.

2010-11-11 Thread Jesse Barnes
On Mon, 1 Nov 2010 16:22:00 +0200 Pauli Nieminen wrote: > This allows ddx to set swap_limit if there is more than one back > buffer for drawable. Setting swap_limit has to also check if change > affects a client that is blocked. > > This can be used to implement N-buffering in driver with minim

[PATCH] Enable silent rules for cat and echo.

2010-11-11 Thread Cyril Brulebois
One gets this: | GENlf3-xaaBitmap.c | GENlf3-xaaBitmap.c | GENlf3-xaaBitmap.c | GENlf3-xaaBitmap.c | CC lf3-xaaBitmap.lo instead of this: | echo "#define LSBFIRST" > l3-xaaBitmap.c | echo "#define TRIPLE_BITS" >> l3-xaaBitmap.c | echo '#include "../../../../hw/xfree86

Re: Smooth scrolling again

2010-11-11 Thread Simon Thum
On 11/09/10 06:07, Peter Hutterer wrote: > I don't understand the no_integration stuff. aside from it being a bit of a > misnomer, I'm missing the point of what is supposed to do. if the axis is in > relative mode, you can go past the axis ranges anyway. In absolute mode, > well, are wheels ever in

Re: [PATCH hyperpen] Fixed indentation, dropped trailing whitespaces

2010-11-11 Thread Manuel Reimer
Argh... Missed attachment in last mail... :-( Yours Manuel >From 6d882d977d40cc525016e9f2a4e5c0ccb7de8997 Mon Sep 17 00:00:00 2001 From: Manuel Reimer Date: Mon, 8 Nov 2010 20:17:16 +0100 Subject: [PATCH] Fixed indentation, dropped trailing whitespaces Signed-off-by: Manuel Reimer --- src/x

Re: [PATCH hyperpen] Fixed indentation, dropped trailing whitespaces

2010-11-11 Thread Manuel Reimer
Peter Hutterer wrote: You know that working on hyperpen automatically makes you the maintainer of the driver? Now's the time to run away screaming :) So far, I'm not sure, if I will have the time to do bigger changes. I think what would have to be done is: - Separate source code into a .c and

[PATCH 2/3] Replace LookupIDByType() with dixLookupResourceByType(), take 1.

2010-11-11 Thread Cyril Brulebois
This patch has been prepared with the following Coccinelle semantic patch: @@ expression x, y; type t; identifier r; @@ -r = (t) LookupIDByType(x, y); +dixLookupResourceByType((pointer)&r, x, y, NullClient, DixUnknownAccess); @@ expression x, y; type t; identifier r; @@ -t r = (t) LookupIDByType(

More warning fixes

2010-11-11 Thread Cyril Brulebois
Hi, some more patches to fix warnings: - [PATCH 1/3] Fix missing include. I might be missing but that should be pretty straightforward to ACK/NACK. - [PATCH 2/3] Replace LookupIDByType() with dixLookupResourceByType(), take 1. Used coccinelle for that one. Indentation was kind of ugly

[PATCH 1/3] Fix missing include.

2010-11-11 Thread Cyril Brulebois
The following happens otherwise (with -Wall -Werror): | In file included from /usr/include/X11/Xfuncs.h:47, | from ../../include/misc.h:112, | from ../../include/screenint.h:52, | from ../../include/scrnintstr.h:52, | from ../../di

[PATCH 3/3] Replace LookupIDByType() with dixLookupResourceByType(), take 2.

2010-11-11 Thread Cyril Brulebois
These occurrences are a bit harder to catch through a semantic patch, so process them “manually”. Signed-off-by: Cyril Brulebois --- hw/dmx/dmxgcops.c |6 -- hw/dmx/glxProxy/glxcmds.c | 12 ++-- hw/dmx/glxProxy/glxext.c |6 +- 3 files changed, 19 insertions(+),

[PATCH libX11] specs: remove CLEANFILES += html as it cannot delete directories

2010-11-11 Thread Gaetan Nadon
This directory is only created manually by the chunked-html target. Signed-off-by: Gaetan Nadon --- specs/xmlrules.in |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/specs/xmlrules.in b/specs/xmlrules.in index 7687860..f8e6d4d 100644 --- a/specs/xmlrules.in +++ b/specs/

[RFC][PATCH v2 resourceproto 1/1] Protocol description of X Resource Extension version 1.2.

2010-11-11 Thread Rami Ylimäki
Signed-off-by: Rami Ylimäki Acked-by: Gaetan Nadon --- RESproto.txt | 317 ++ 1 files changed, 317 insertions(+), 0 deletions(-) create mode 100644 RESproto.txt diff --git a/RESproto.txt b/RESproto.txt new file mode 100644 index 000

[RFC][PATCH v2 resourceproto 0/1] Protocol description of X Resource Extension version 1.2.

2010-11-11 Thread Rami Ylimäki
Hi, The version 2 of this patch fixes a case that was overlooked in version 1. Previously the protocol made it possible to query sizes of isolated resources. Fixed version can be used to query sizes of all lower level resources referenced by a higher level resource as well. This was done so that X

[PATCH xserver 8/8] doc: refactor Makefile and xmlrules.in code for reusability

2010-11-11 Thread Gaetan Nadon
A different approach which requires less variables setting and internal knowledge of the reused code. Changing from "install" to "not install" is very easy now. Signed-off-by: Gaetan Nadon --- doc/xml/Makefile.am | 11 +++ doc/xml/dtrace/Makefile.am | 16 +++-

[PATCH xserver 7/8] xmlrules.in: use $(top_srcdir) rather than ../../../ [...]

2010-11-11 Thread Gaetan Nadon
Relative paths don't always work in distcheck when srcdir not = builddir include $(top_srcdir)/doc/xml/xmlrules.in Signed-off-by: Gaetan Nadon --- doc/xml/Makefile.am |2 +- doc/xml/dtrace/Makefile.am |2 +- hw/dmx/doc/Makefile.am |2 +- hw/xfree86/doc/sgml/

[PATCH xserver 6/8] xmlrules.in: specify the xserver entities depedencies on the target

2010-11-11 Thread Gaetan Nadon
The generated docs will rebuild when the xserver.ent file changes. Signed-off-by: Gaetan Nadon --- doc/xml/xmlrules.in | 11 +++ 1 files changed, 3 insertions(+), 8 deletions(-) diff --git a/doc/xml/xmlrules.in b/doc/xml/xmlrules.in index 468cfaf..2817d2c 100644 --- a/doc/xml/xmlrules

[PATCH xserver 5/8] xmlrules.in: use pattern rules to enable dependencies

2010-11-11 Thread Gaetan Nadon
This will allow a dependency to be specified as done in libX11: %.html: %.xml $(dist_spec_DATA) $(AM_V_GEN)$(XMLTO) $(XMLTO_FLAGS) xhtml-nochunks $< Signed-off-by: Gaetan Nadon --- doc/xml/xmlrules.in |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/xml/

[PATCH xserver 4/8] xmlrules.in: no need to setup xmlto flags when configuring --without-xmlto

2010-11-11 Thread Gaetan Nadon
The AM conditional HAVE_XMLTO should wrap more statements. Signed-off-by: Gaetan Nadon --- doc/xml/xmlrules.in |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/xml/xmlrules.in b/doc/xml/xmlrules.in index 265cd02..3a78569 100644 --- a/doc/xml/xmlrules.in +++ b/doc/x

[PATCH xserver 3/8] xmlrules.in: the searchpath only needed to locate entities

2010-11-11 Thread Gaetan Nadon
It can only be used if we have stylesheets, that is, xorg-sgml-doctools package is installed. Signed-off-by: Gaetan Nadon --- doc/xml/xmlrules.in |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/xml/xmlrules.in b/doc/xml/xmlrules.in index c455ded..265cd02 100644 -

[PATCH xserver 2/8] xmlrules.in: remove unrequired "@rm -f $@" from doc targets

2010-11-11 Thread Gaetan Nadon
Unable to find a purpose for this, not used anywhere else but in the font module. Signed-off-by: Gaetan Nadon --- doc/xml/xmlrules.in |3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/doc/xml/xmlrules.in b/doc/xml/xmlrules.in index f828eef..c455ded 100644 --- a/doc/xml/x

[PATCH xserver 1/8] doc: HTML file generation: use the installed copy of xorg.css

2010-11-11 Thread Gaetan Nadon
Currenlty the xorg.css file is copied in each location where a DocBook/XML file resides. This produces about 70 copies in the $(docdir) install tree for all of xorg. Signed-off-by: Gaetan Nadon --- doc/xml/.gitignore|1 - doc/xml/dtrace/.gitignore |1 - doc/xml/xmlrules.in

[PATCH xserver 0/8] DocBook/XML make updates and refactoring

2010-11-11 Thread Gaetan Nadon
Use the xorg.css from xorg-sgml-doctools General makefile simplification Refactoring of xmlrules reusable code Tested with the following permutations of options: --enable-builddocs --enable-docs --enable-devel-docs --with-xmlto --enable-builddocs --disable-docs --enable-devel-docs --with-xmlto --e

Re: [PATCH 10/10] xfree86/xv: Provide a ModeSet hook

2010-11-11 Thread Luc Verhaegen
On Wed, Nov 10, 2010 at 03:55:41PM -0800, Keith Packard wrote: > On Fri, 29 Oct 2010 21:19:06 +0300, ville.syrj...@nokia.com wrote: > > > Reput all ports when the display mode or panning has been changed by > > RandR code. This makes the overlays appear in the correct position > > on the screen. >

Re: [PATCH] Xi: move property reset from extension shutdown to init.

2010-11-11 Thread Julien Cristau
On Wed, Jun 9, 2010 at 17:10:57 +1000, Peter Hutterer wrote: > If any part of the stack calls XIGetKnownProperty during device shutdown > the property is re-initialized before the server generation resets, leaving > the value invalid again. > > Move the reset to the extension init which happens

Re: [PATCH 2/2 v3] dix: fix root window background behaviour for protocol calls

2010-11-11 Thread Rami Ylimäki
Reviewed-by: Rami Ylimäki On 11/10/2010 09:48 PM, Tiago Vignatti wrote: Instead always paint root tiled (-retro like), protocol calls (XSetWindowBackgroundPixmap and related) should behave accordingly when None and ParentRelative is set as background pixmap. It follow what the protocol states

Re: [PATCH 2/2] Set DamageSetReportAfterOp to true for the damage extension

2010-11-11 Thread Michel Dänzer
On Mit, 2010-11-10 at 15:53 -0800, Keith Packard wrote: > On Thu, 28 Oct 2010 20:46:23 -0700, Eric Anholt wrote: > > > (cherry picked from commit 8d7b7a0d71e0b89321b3341b781bc8845386def6) > > [anholt: re-applied to revert the revert, now that the cause of the > > revert is fixed] > > Merged. >

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Michal Suchanek
On 11 November 2010 09:26, Dmitry Torokhov wrote: > On Thu, Nov 11, 2010 at 09:06:14AM +0100, Michal Suchanek wrote: >> On 11 November 2010 02:22, Dmitry Torokhov wrote: >> > On Thu, Nov 11, 2010 at 01:48:44AM +0100, Henrik Rydberg wrote: >> >> On 11/11/2010 12:53 AM, Peter Hutterer wrote: >> >>

Re: [PATCH] xfree86: rename allowEmptyInput to forceInputDevices.

2010-11-11 Thread Julien Cristau
On Thu, Nov 11, 2010 at 10:08:20 +0100, Matthieu Herrb wrote: > I don't see a diff hunk to actually rename the option in xorg.conf > and provide backward compatibility with the previous name, nor any > associated documentation update. > > Am I missing something or what are your intents wrt the

Re: [PATCH] xfree86: rename allowEmptyInput to forceInputDevices.

2010-11-11 Thread Matthieu Herrb
On Thu, Nov 11, 2010 at 01:43:13PM +1000, Peter Hutterer wrote: > This is a more accurate name for the actual functionality than > allowEmptyInput. Historically, allowEmptyInput has allowed the server to > start with no input devices. Since 1.4 and the introduction of VCP and VCK, > there are alway

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Dmitry Torokhov
On Thu, Nov 11, 2010 at 09:06:14AM +0100, Michal Suchanek wrote: > On 11 November 2010 02:22, Dmitry Torokhov wrote: > > On Thu, Nov 11, 2010 at 01:48:44AM +0100, Henrik Rydberg wrote: > >> On 11/11/2010 12:53 AM, Peter Hutterer wrote: > >> > >> > On Wed, Nov 10, 2010 at 11:00:05AM +0100, Henrik R

Re: [PATCH] xfree86: rename allowEmptyInput to forceInputDevices.

2010-11-11 Thread Julien Cristau
On Thu, Nov 11, 2010 at 13:43:13 +1000, Peter Hutterer wrote: > This is a more accurate name for the actual functionality than > allowEmptyInput. Historically, allowEmptyInput has allowed the server to > start with no input devices. Since 1.4 and the introduction of VCP and VCK, > there are always

Re: [PATCH 2/2] DRI2: Add error message when working around driver bug

2010-11-11 Thread Pauli Nieminen
On 10/11/10 23:39 +0100, ext Keith Packard wrote: > On Mon, 25 Oct 2010 17:13:58 +0300, Pauli Nieminen > wrote: > > > There isn't API that allows application atomically query for msc changes > > and schedule swaps. If msc changes dramatically between query and > > scheduling application would sc

Re: [RFC] Multi-Touch (MT) support - arbitration or not

2010-11-11 Thread Michal Suchanek
On 11 November 2010 02:22, Dmitry Torokhov wrote: > On Thu, Nov 11, 2010 at 01:48:44AM +0100, Henrik Rydberg wrote: >> On 11/11/2010 12:53 AM, Peter Hutterer wrote: >> >> > On Wed, Nov 10, 2010 at 11:00:05AM +0100, Henrik Rydberg wrote: >> >> A comment on pixels and resolution: >> >> >> >> A pen a