Re: Performance of XRenderCompositeTrapezoids in the aliased case

2009-02-03 Thread Michel Dänzer
On Tue, 2009-02-03 at 04:10 +0200, Mart Raudsepp wrote: On Mon, 2009-02-02 at 21:28 +0100, Rémi Cardona wrote: Le 02/02/2009 19:52, Clemens Eisserer a écrit : 2.) What do you think about a data structure where EXA drivers could tell EXA which features they support. This way EXA could

Re: xf86-input-evdev: Changes to 'master'

2009-02-03 Thread Peter Hutterer
On Mon, Feb 02, 2009 at 10:39:27PM -0800, Dan Nicholson wrote: On Mon, Feb 2, 2009 at 7:23 PM, Peter Hutterer peter.hutte...@who-t.net wrote: On Tue, Feb 03, 2009 at 01:13:35AM -0200, Paulo César Pereira de Andrade wrote: But I think a better approach should be found for pkg-config

Re: xf86-input-evdev: Changes to 'master'

2009-02-03 Thread Dan Nicholson
On Tue, Feb 3, 2009 at 2:13 AM, Peter Hutterer peter.hutte...@who-t.net wrote: On Mon, Feb 02, 2009 at 10:39:27PM -0800, Dan Nicholson wrote: On Mon, Feb 2, 2009 at 7:23 PM, Peter Hutterer peter.hutte...@who-t.net wrote: On Tue, Feb 03, 2009 at 01:13:35AM -0200, Paulo César Pereira de

Re: question about building mesa with the two scripts from Xorg wikis

2009-02-03 Thread Dan Nicholson
On Tue, Feb 3, 2009 at 6:18 AM, Joe Smith stop...@yahoo.com wrote: Hi, I noticed a discrepancy in the Xorg documentation that's been causing me some confusion: At http://wiki.x.org/wiki/ModularDevelopersGuide: When using the build.sh script, it says: If you want to include Mesa/OpenGL

Re: question about building mesa with the two scripts from Xorg wikis

2009-02-03 Thread Jacek Luczak
Hi Joe Smith pisze: Hi, So the questions are: 1) Does mesa need to be built separately, as demonstrated in the second link? If so, why is it commented out in build.sh? Yep, it does. 2) Should the --with-mesa-source parameter always be used, and if so, why is it not used in the

Re: XtDisplayToApplicationContext fails with Error: Couldn't find per display information

2009-02-03 Thread Dan Nicholson
On Thu, Jan 29, 2009 at 5:08 PM, Tristan Schmelcher tschmelc...@google.com wrote: Hello all. Sorry if this is not the right place to send this, but I'm developing a plugin for Firefox on Linux and I've run up against a roadblock. In my plugin I'm being passed a pointer to an X Display struct

Re: XtDisplayToApplicationContext fails with Error: Couldn't find per display information

2009-02-03 Thread Tristan Schmelcher
I've already verified that the display is not NULL. I'll try the experiment you suggested though. Thanks. 2009/2/3 Dan Nicholson dbn.li...@gmail.com On Thu, Jan 29, 2009 at 5:08 PM, Tristan Schmelcher tschmelc...@google.com wrote: Hello all. Sorry if this is not the right place to send this,

Xorg memory leakage?

2009-02-03 Thread Stefano Avallone
Hi all, I'm using xorg packages from experimental (xserver 1.5.99.901, libdrm 2.4.3, mesa 7.3-rc3, video-intel 2.6.1) and kde 4.2 (from experimental as well). I am using UXA+DRI2 and kwin with composite effects enabled. I am able to suspend and resume without problems. However, I noticed that

Re: Xorg memory leakage?

2009-02-03 Thread Stefano Avallone
On Tuesday 03 February 2009 18:44:17 Stefano Avallone wrote: Hi all, I'm using xorg packages from experimental (xserver 1.5.99.901, libdrm *debian* experimental sorry 2.4.3, mesa 7.3-rc3, video-intel 2.6.1) and kde 4.2 (from experimental as well). I am using UXA+DRI2 and kwin with

RandR 1.1 and 1.3 compatibility.

2009-02-03 Thread Ander Conselvan de Oliveira
Hi, I'm having a problem with xrandr 1.2.99.4, X server from 1.6 branch and drivers that only support RandR 1.1. The server reports it supports version 1.3 of the extension, so xrandr tries to get panning information but the call to XRRGetPanning fails because rrGetPanning private screen

Re: Xorg memory leakage?

2009-02-03 Thread Peter Harris
Stefano Avallone wrote: Hi all, I'm using xorg packages from experimental (xserver 1.5.99.901, libdrm 2.4.3, mesa 7.3-rc3, video-intel 2.6.1) and kde 4.2 (from experimental as well). I am using UXA+DRI2 and kwin with composite effects enabled. I am able to suspend and resume without

[PATCH 6/9] exa: wrap the remainder of exa_unaccel.c

2009-02-03 Thread Maarten Maathuis
--- exa/exa_unaccel.c | 30 +++--- 1 files changed, 27 insertions(+), 3 deletions(-) diff --git a/exa/exa_unaccel.c b/exa/exa_unaccel.c index d56f589..a521497 100644 --- a/exa/exa_unaccel.c +++ b/exa/exa_unaccel.c @@ -290,9 +290,14 @@ ExaCheckGetSpans (DrawablePtr

[PATCH 9/9] exa: fix exaCopyArea and friends.

2009-02-03 Thread Maarten Maathuis
--- exa/Makefile.am |3 ++- exa/exa_accel.c | 44 ++-- exa/exa_priv.h |6 +- exa/exa_render.c| 14 -- exa/exa_unaccel.c | 15 +++ fb/fbcopy_helpers.h |5 + 6 files changed, 69

[PATCH 1/9] exa: Remove one of the many calls directly into the fb layer.

2009-02-03 Thread Maarten Maathuis
--- exa/exa_accel.c | 32 ++-- 1 files changed, 6 insertions(+), 26 deletions(-) diff --git a/exa/exa_accel.c b/exa/exa_accel.c index f72a08a..b70222a 100644 --- a/exa/exa_accel.c +++ b/exa/exa_accel.c @@ -149,6 +149,7 @@ exaDoPutImage (DrawablePtr pDrawable, GCPtr

[PATCH 5/9] exa: use proper wrapping in exa.c

2009-02-03 Thread Maarten Maathuis
--- exa/exa.c | 141 ++--- 1 files changed, 70 insertions(+), 71 deletions(-) diff --git a/exa/exa.c b/exa/exa.c index 42b664f..5faeee0 100644 --- a/exa/exa.c +++ b/exa/exa.c @@ -188,6 +188,7 @@ exaDestroyPixmap (PixmapPtr pPixmap) {

[PATCH 8/9] fb: split off a few functions into a seperate file and enhance them slightly.

2009-02-03 Thread Maarten Maathuis
- Compatibility wrappers, if deemed neccesary will come later. --- fb/Makefile.am |3 +- fb/fb.h | 37 +- fb/fb24_32.c|4 +- fb/fbcopy.c | 342 ++- fb/fbcopy_helpers.c | 367

Comments about exa patches i just sent

2009-02-03 Thread Maarten Maathuis
Per request by anholt and others, i have sent the patches as plain text. The only change from the last set is that i splitted out a few fb functions into a seperate file, enhanced them slightly and added a few defines to allow exa to use them. My attempts to split it out into mi, gave me very

[PATCH 4/9] exa: properly wrap GC functions

2009-02-03 Thread Maarten Maathuis
--- exa/exa.c | 219 exa/exa_priv.h| 33 - exa/exa_unaccel.c | 98 +--- 3 files changed, 234 insertions(+), 116 deletions(-) diff --git a/exa/exa.c b/exa/exa.c index 496b898..42b664f 100644 ---

[PATCH 3/9] exa: add GC private

2009-02-03 Thread Maarten Maathuis
--- exa/exa.c | 11 +++ exa/exa_priv.h | 12 +++- 2 files changed, 22 insertions(+), 1 deletions(-) diff --git a/exa/exa.c b/exa/exa.c index ba063bb..496b898 100644 --- a/exa/exa.c +++ b/exa/exa.c @@ -41,6 +41,8 @@ static int exaScreenPrivateKeyIndex; DevPrivateKey

[PATCH] ISO C90: Move declaration to the beginning of the function

2009-02-03 Thread Tomas Carnecky
devices.c: In function ‘DoChangeKeyboardControl’: devices.c:1768: warning: ISO C90 forbids mixed declarations and code Signed-off-by: Tomas Carnecky t...@dbservice.com --- dix/devices.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dix/devices.c b/dix/devices.c index

Xvesa black magic

2009-02-03 Thread William Tracy
Hello all, I'm playing with an Kdrive-based image of mine under Qemu. I built Xvesa from the 7.3 release of Xorg, as 7.4 seems to have a regression in TinyX (that's a topic for another email). I'm building the images using the T2 SDE framework, if that's meaningful to anyone. Everything compiles

[PATCH] Fix warning: unused variable XXX

2009-02-03 Thread Tomas Carnecky
events.c:4614: warning: unused variable ‘kbd’ xkbUtils.c:361: warning: unused variable ‘maxKeysPerMod’ xf86Events.c:409: warning: unused variable ‘ke’ generic.c:131: warning: unused variable ‘cs’ generic.c:130: warning: unused variable ‘size’ xf86RandR12.c:591: warning: unused variable ‘crtc’

[PATCH] Fix warning: cast to pointer from integer of different size

2009-02-03 Thread Tomas Carnecky
Add parenthesis around the whole expression. Signed-off-by: Tomas Carnecky t...@dbservice.com --- glx/indirect_dispatch.c |2 +- glx/indirect_dispatch_swap.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/glx/indirect_dispatch.c b/glx/indirect_dispatch.c index

[PATCH] fbdevHWGetRec() doesn't return the private data

2009-02-03 Thread Tomas Carnecky
Signed-off-by: Tomas Carnecky t...@dbservice.com --- hw/xfree86/fbdevhw/fbdevhw.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/hw/xfree86/fbdevhw/fbdevhw.c b/hw/xfree86/fbdevhw/fbdevhw.c index 495d88b..3eee070 100644 --- a/hw/xfree86/fbdevhw/fbdevhw.c +++

[PATCH] Fix warning: braces around scalar initializer

2009-02-03 Thread Tomas Carnecky
Signed-off-by: Tomas Carnecky t...@dbservice.com --- hw/xfree86/common/xf86Bus.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/xfree86/common/xf86Bus.c b/hw/xfree86/common/xf86Bus.c index 1f8e4de..69f5152 100644 --- a/hw/xfree86/common/xf86Bus.c +++

[PATCH] DBUS_API_SUBJECT_TO_CHANGE is already defined on the command line

2009-02-03 Thread Tomas Carnecky
dbus-core.c:30:1: warning: DBUS_API_SUBJECT_TO_CHANGE redefined command-line: warning: this is the location of the previous definition Signed-off-by: Tomas Carnecky t...@dbservice.com --- config/dbus-core.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git

[PATCH] Explicitly cast the SDK symbols to 'void *'

2009-02-03 Thread Tomas Carnecky
Two symbols (isItTimeToYield and dispatchException) are declared as volatile in the source and gcc doesn't like that the modifier is implicitely removed. Use an explicit cast. Signed-off-by: Tomas Carnecky t...@dbservice.com --- hw/xfree86/loader/sdksyms.sh |2 +- 1 files changed, 1

Re: client-side font rendering very very slow in X.org xserver 1.5.3 w/r200: massive fetches from VRAM, why?

2009-02-03 Thread Nix
On 31 Jan 2009, Michel Dänzer said: On Fri, 2009-01-30 at 21:59 +, Nix wrote: On 30 Jan 2009, Michel Dänzer stated: Trying current xf86-video-ati Git might be good, but my main suggestion would be to try xserver Git server-1.6-branch with EXA. OK. Do I need to upgrade Mesa or anything

about the exa patches

2009-02-03 Thread Maarten Maathuis
Found a potential bug in exaValidateGC, which should be fixed now. I hope the changes are coming to an end. I still need to know if there are any external users of fbDoCopy that would care for a wrapper. I'm assuming that functions that changed their return value from void to Bool pose no issue,

Re: [PATCH] Add a prototype for CopyGetMasterEvent()

2009-02-03 Thread Peter Hutterer
On Wed, Feb 04, 2009 at 12:03:12AM +0100, Tomas Carnecky wrote: This function is defined in mi/mieq.c and used in xkb/ddxDevBtn.c, hence it needs a prototype. Signed-off-by: Tomas Carnecky t...@dbservice.com --- include/input.h |8 1 files changed, 8 insertions(+), 0

[PATCH 7/9] exa: create ExaCheckGetImage

2009-02-03 Thread Maarten Maathuis
--- exa/exa_accel.c |7 +-- exa/exa_priv.h|4 exa/exa_unaccel.c | 30 ++ 3 files changed, 35 insertions(+), 6 deletions(-) diff --git a/exa/exa_accel.c b/exa/exa_accel.c index 10e7914..02858f1 100644 --- a/exa/exa_accel.c +++ b/exa/exa_accel.c

[PATCH 4/9] exa: properly wrap GC functions

2009-02-03 Thread Maarten Maathuis
--- exa/exa.c | 233 + exa/exa_priv.h| 33 +++- exa/exa_unaccel.c | 98 --- 3 files changed, 248 insertions(+), 116 deletions(-) diff --git a/exa/exa.c b/exa/exa.c index 496b898..58d1a7d 100644 ---

Re: [PATCH] __GLX_MEM_COPY() is never used on possible NULL pointers

2009-02-03 Thread Peter Hutterer
On Wed, Feb 04, 2009 at 12:05:57AM +0100, Tomas Carnecky wrote: Signed-off-by: Tomas Carnecky t...@dbservice.com --- glx/unpack.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/glx/unpack.h b/glx/unpack.h index a1dd17d..675d8cc 100644 --- a/glx/unpack.h +++

Re: client-side font rendering very very slow in X.org xserver 1.5.3 w/r200: massive fetches from VRAM, why?

2009-02-03 Thread Dan Nicholson
On Tue, Feb 3, 2009 at 3:26 PM, Nix n...@esperi.org.uk wrote: On 31 Jan 2009, Michel Dänzer said: On Fri, 2009-01-30 at 21:59 +, Nix wrote: On 30 Jan 2009, Michel Dänzer stated: Trying current xf86-video-ati Git might be good, but my main suggestion would be to try xserver Git

[PATCH 5/9] exa: use proper wrapping in exa.c

2009-02-03 Thread Maarten Maathuis
--- exa/exa.c | 141 ++--- 1 files changed, 70 insertions(+), 71 deletions(-) diff --git a/exa/exa.c b/exa/exa.c index 58d1a7d..033b353 100644 --- a/exa/exa.c +++ b/exa/exa.c @@ -188,6 +188,7 @@ exaDestroyPixmap (PixmapPtr pPixmap) {

Re: Xorg memory leakage?

2009-02-03 Thread Pat Kane
Can you run xrestop? On 2/3/09, Stefano Avallone stava...@unina.it wrote: On Tuesday 03 February 2009 18:44:17 Stefano Avallone wrote: Hi all, I'm using xorg packages from experimental (xserver 1.5.99.901, libdrm *debian* experimental sorry 2.4.3, mesa 7.3-rc3, video-intel 2.6.1) and

[PATCH 1/9] exa: Remove one of the many calls directly into the fb layer.

2009-02-03 Thread Maarten Maathuis
--- exa/exa_accel.c | 32 ++-- 1 files changed, 6 insertions(+), 26 deletions(-) diff --git a/exa/exa_accel.c b/exa/exa_accel.c index f72a08a..b70222a 100644 --- a/exa/exa_accel.c +++ b/exa/exa_accel.c @@ -149,6 +149,7 @@ exaDoPutImage (DrawablePtr pDrawable, GCPtr

[PATCH 2/9] exa: kill of exaImageGlyphBlt

2009-02-03 Thread Maarten Maathuis
- It serves no obvious purpose, yet it directly accesses many fb symbols. --- exa/exa_accel.c | 135 +-- 1 files changed, 1 insertions(+), 134 deletions(-) diff --git a/exa/exa_accel.c b/exa/exa_accel.c index b70222a..10e7914 100644 ---

[PATCH 7/9] exa: create ExaCheckGetImage

2009-02-03 Thread Maarten Maathuis
--- exa/exa_accel.c |7 +-- exa/exa_priv.h|4 exa/exa_unaccel.c | 30 ++ 3 files changed, 35 insertions(+), 6 deletions(-) diff --git a/exa/exa_accel.c b/exa/exa_accel.c index 10e7914..02858f1 100644 --- a/exa/exa_accel.c +++ b/exa/exa_accel.c

Re: RandR 1.1 and 1.3 compatibility.

2009-02-03 Thread Colin Guthrie
'Twas brillig, and Ander Conselvan de Oliveira at 03/02/09 18:21 did gyre and gimble: Hi, I'm having a problem with xrandr 1.2.99.4, X server from 1.6 branch and drivers that only support RandR 1.1. The server reports it supports version 1.3 of the extension, so xrandr tries to get

[PATCH] dix: die if we can't activate or init the VCP/VCK.

2009-02-03 Thread Peter Hutterer
If we have a busted xkb setup, the XKB initialization on the core devices fails and leaves us with dev-key-xkbInfo == NULL. This in turn causes segfaults lateron. Return BadValue when the XKB configuration for a master device failed, and if that happens for the VCP/VCK, die semi-gracefully.

[PATCH 9/9] exa: fix exaCopyArea and friends.

2009-02-03 Thread Maarten Maathuis
--- exa/Makefile.am |3 ++- exa/exa_accel.c | 44 ++-- exa/exa_priv.h |6 +- exa/exa_render.c| 14 -- exa/exa_unaccel.c | 15 +++ fb/fbcopy_helpers.h |5 + 6 files changed, 69

[PATCH] Add a prototype for CopyGetMasterEvent()

2009-02-03 Thread Tomas Carnecky
This function is defined in mi/mieq.c and used in xkb/ddxDevBtn.c, hence it needs a prototype. Signed-off-by: Tomas Carnecky t...@dbservice.com --- include/input.h |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/include/input.h b/include/input.h index

[PATCH 2/9] exa: kill of exaImageGlyphBlt

2009-02-03 Thread Maarten Maathuis
- It serves no obvious purpose, yet it directly accesses many fb symbols. --- exa/exa_accel.c | 135 +-- 1 files changed, 1 insertions(+), 134 deletions(-) diff --git a/exa/exa_accel.c b/exa/exa_accel.c index b70222a..10e7914 100644 ---

Re: xf86-input-evdev: Changes to 'master'

2009-02-03 Thread Peter Hutterer
On Tue, Feb 03, 2009 at 05:35:49AM -0800, Dan Nicholson wrote: applied the patch locally, ran make distcheck and it still fails. Am I doing anything wrong? AFAICT from a quick peek, ${includedir} isn't expanded. Can you double-check this please? That part worked for me, but it does fail

[PATCH] __GLX_MEM_COPY(): no need to check for NULL pointers

2009-02-03 Thread Tomas Carnecky
warning: the address of ‘XXX’ will always evaluate as ‘true’ This macro is exclusively used on pointers that are guaranteed to be valid. Either because the variable is on the stack, or the pointer is already being dereferenced earlier so by the time the macro is used, we can rely on it being

[PATCH 8/9] fb: split off a few functions into a seperate file and enhance them slightly.

2009-02-03 Thread Maarten Maathuis
- Compatibility wrappers, if deemed neccesary will come later. --- fb/Makefile.am |3 +- fb/fb.h | 37 +- fb/fb24_32.c|4 +- fb/fbcopy.c | 342 ++- fb/fbcopy_helpers.c | 367

Re: [PATCH] dix: die if we can't activate or init the VCP/VCK.

2009-02-03 Thread Dan Nicholson
On Tue, Feb 3, 2009 at 4:30 PM, Peter Hutterer peter.hutte...@who-t.net wrote: If we have a busted xkb setup, the XKB initialization on the core devices fails and leaves us with dev-key-xkbInfo == NULL. This in turn causes segfaults lateron. Return BadValue when the XKB configuration for a

[PATCH] Fix warning: XXX defined but not used

2009-02-03 Thread Tomas Carnecky
generic.c:80: warning: ‘read_legacy_video_BIOS’ defined but not used Signed-off-by: Tomas Carnecky t...@dbservice.com --- hw/xfree86/int10/generic.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/hw/xfree86/int10/generic.c b/hw/xfree86/int10/generic.c index

Re: xf86-input-evdev: Changes to 'master'

2009-02-03 Thread Dan Nicholson
On Tue, Feb 3, 2009 at 4:39 PM, Peter Hutterer peter.hutte...@who-t.net wrote: On Tue, Feb 03, 2009 at 05:35:49AM -0800, Dan Nicholson wrote: applied the patch locally, ran make distcheck and it still fails. Am I doing anything wrong? AFAICT from a quick peek, ${includedir} isn't

[PATCH 6/9] exa: wrap the remainder of exa_unaccel.c

2009-02-03 Thread Maarten Maathuis
--- exa/exa_unaccel.c | 30 +++--- 1 files changed, 27 insertions(+), 3 deletions(-) diff --git a/exa/exa_unaccel.c b/exa/exa_unaccel.c index d56f589..a521497 100644 --- a/exa/exa_unaccel.c +++ b/exa/exa_unaccel.c @@ -290,9 +290,14 @@ ExaCheckGetSpans (DrawablePtr

Re: [PATCH] dix: die if we can't activate or init the VCP/VCK.

2009-02-03 Thread Peter Hutterer
On Tue, Feb 03, 2009 at 04:46:05PM -0800, Dan Nicholson wrote: On Tue, Feb 3, 2009 at 4:30 PM, Peter Hutterer peter.hutte...@who-t.net wrote: If we have a busted xkb setup, the XKB initialization on the core devices fails and leaves us with dev-key-xkbInfo == NULL. This in turn causes

[PATCH] Make gcc happy: correct third argument of CopyGetMasterEvent()

2009-02-03 Thread Tomas Carnecky
Signed-off-by: Tomas Carnecky t...@dbservice.com --- xkb/ddxDevBtn.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/xkb/ddxDevBtn.c b/xkb/ddxDevBtn.c index 03fb440..aad9661 100644 --- a/xkb/ddxDevBtn.c +++ b/xkb/ddxDevBtn.c @@ -116,7 +116,7 @@ DeviceIntPtr

Re: Fixing compiler warnings

2009-02-03 Thread Peter Hutterer
On Mon, Feb 02, 2009 at 11:02:57PM +0100, Tomas Carnecky wrote: I've been trying to fix the compiler warnings that gcc generates when compiling the xserver source. Pushed all minus the two I commented on, and the sdksyms.sh patch. I don't know whether that's the right thing to do, so I left

Re: [PATCH] dix: die if we can't activate or init the VCP/VCK.

2009-02-03 Thread Daniel Stone
On Wed, Feb 04, 2009 at 10:51:21AM +1000, Peter Hutterer wrote: From 29b2848cecf1ccde8fba7d7b1bfafa03873753d8 Mon Sep 17 00:00:00 2001 From: Peter Hutterer peter.hutte...@who-t.net Date: Wed, 4 Feb 2009 10:11:13 +1000 Subject: [PATCH] dix: die if we can't activate or init the VCP/VCK. If we

Re: xf86-input-evdev: Changes to 'master'

2009-02-03 Thread Peter Hutterer
On Tue, Feb 03, 2009 at 04:50:17PM -0800, Dan Nicholson wrote: On Tue, Feb 3, 2009 at 4:39 PM, Peter Hutterer peter.hutte...@who-t.net wrote: On Tue, Feb 03, 2009 at 05:35:49AM -0800, Dan Nicholson wrote: applied the patch locally, ran make distcheck and it still fails. Am I doing

Re: [PATCH] dix: die if we can't activate or init the VCP/VCK.

2009-02-03 Thread Dan Nicholson
On Tue, Feb 3, 2009 at 4:51 PM, Peter Hutterer peter.hutte...@who-t.net wrote: On Tue, Feb 03, 2009 at 04:46:05PM -0800, Dan Nicholson wrote: On Tue, Feb 3, 2009 at 4:30 PM, Peter Hutterer peter.hutte...@who-t.net wrote: If we have a busted xkb setup, the XKB initialization on the core

Re: xf86-input-evdev: Changes to 'master'

2009-02-03 Thread Dan Nicholson
On Tue, Feb 3, 2009 at 5:00 PM, Peter Hutterer peter.hutte...@who-t.net wrote: On Tue, Feb 03, 2009 at 04:50:17PM -0800, Dan Nicholson wrote: On Tue, Feb 3, 2009 at 4:39 PM, Peter Hutterer peter.hutte...@who-t.net wrote: On Tue, Feb 03, 2009 at 05:35:49AM -0800, Dan Nicholson wrote:

Re: [PATCH] dix: die if we can't activate or init the VCP/VCK.

2009-02-03 Thread Aaron Plattner
On Tue, Feb 03, 2009 at 04:30:45PM -0800, Peter Hutterer wrote: If we have a busted xkb setup, the XKB initialization on the core devices fails and leaves us with dev-key-xkbInfo == NULL. This in turn causes segfaults lateron. Return BadValue when the XKB configuration for a master device

Re: [PATCH] Add a prototype for CopyGetMasterEvent()

2009-02-03 Thread Paulo César Pereira de Andrade
Peter Hutterer wrote: On Wed, Feb 04, 2009 at 12:03:12AM +0100, Tomas Carnecky wrote: This function is defined in mi/mieq.c and used in xkb/ddxDevBtn.c, hence it needs a prototype. Signed-off-by: Tomas Carnecky t...@dbservice.com --- include/input.h |8 1 files changed, 8

libpciaccess MTRR splitting

2009-02-03 Thread Francisco Jerez
Hi. Since I switched to libpciaccess, I've been seeing errors like: error setting MTRR (base = 0x1420, size = 0x0080, type = 1) Invalid argument (22) It's because the GPU I'm using (a siliconmotion SM720) has a register area at the beginning of the PCI BAR which shouldn't be set to

Re: [PATCH] Add a prototype for CopyGetMasterEvent()

2009-02-03 Thread Peter Hutterer
On Wed, Feb 04, 2009 at 12:23:10AM -0200, Paulo César Pereira de Andrade wrote: Peter Hutterer wrote: On Wed, Feb 04, 2009 at 12:03:12AM +0100, Tomas Carnecky wrote: This function is defined in mi/mieq.c and used in xkb/ddxDevBtn.c, hence it needs a prototype. Signed-off-by: Tomas

Re: XtDisplayToApplicationContext fails with Error: Couldn't find per display information

2009-02-03 Thread Glynn Clements
Tristan Schmelcher wrote: Hello all. Sorry if this is not the right place to send this, but I'm developing a plugin for Firefox on Linux and I've run up against a roadblock. In my plugin I'm being passed a pointer to an X Display struct (in NPP_SetWindow, for those of you that know NPAPI)

Re: Current tinderbox regression (xhost)

2009-02-03 Thread Dan Nicholson
On Tue, Feb 3, 2009 at 7:20 PM, Paulo César Pereira de Andrade p...@mandriva.com.br wrote: Daniel Stone wrote: Hi, Hi, I hope this is not a final decision. And would hope for a more formal message, other then a notification in IRC while I am marked as away, and due to no response in 30

[PATCH] Damage re-used shadow scanout buffer using new transforms.

2009-02-03 Thread Keith Packard
When the shadow scanout buffer can be re-used, the underlying framebuffer area must be damaged so that the scanout will be repainted. This patch delays the addition of that damaged area until after the transform in the crtc has been updated, otherwise the old transform would have been used and the

[PATCH] Handle the combination of panning and crtc transforms

2009-02-03 Thread Keith Packard
This patch gets the shadow scanout buffer repainted on panning area changes. It does not, however, track the mouse correctly. Signed-off-by: Keith Packard kei...@keithp.com --- hw/xfree86/modes/xf86Crtc.c | 36 ++-- 1 files changed, 10 insertions(+), 26

[PATCH] Handle matrix computation overflow in RRTransformCompute

2009-02-03 Thread Keith Packard
If the computation of the composite fixed-point transform for RandR overflows at any point, take the resulting floating point transform and scale that back to fit in a fixed point matrix. This ensures that a matrix will always be available, although perhaps at reduced precision. Someday we should

Re: client-side font rendering very very slow in X.org xserver 1.5.3 w/r200: massive fetches from VRAM, why?

2009-02-03 Thread Michel Dänzer
On Tue, 2009-02-03 at 23:26 +, Nix wrote: [dix] Could not init font path element /usr/lib/X11/fonts/OTF, removing from list! It's hard to check the scrolling behaviour of antialiased and fixed-point text when the only font you have is 'fixed' :) Well, FWIW this only affects core

Re: about the exa patches

2009-02-03 Thread Michel Dänzer
On Wed, 2009-02-04 at 00:29 +0100, Maarten Maathuis wrote: I hope the changes are coming to an end. I still need to know if there are any external users of fbDoCopy that would care for a wrapper. I'm assuming that functions that changed their return value from void to Bool pose no issue, but