[PATCH] xf86-video-geode: DCON: set the default (physical) screen size if we detect a DCON

2008-11-25 Thread Andres Salomon
We can be assured that a DCON device has an OLPC panel that's 152x114 mm. This adds fields to GeodeRec to allow other panels to potentially override physical width/height fields, and also allows xorg.conf to override the values. Signed-off-by: Andres Salomon <[EMAIL PROTECTED]> --- src/geode.h

[PATCH 2/2] xf86-video-intel: i810_driver: drop I810GetRec

2008-11-25 Thread Andres Salomon
There aren't as many issues with I810GetRec, but there's not much point for its existence, either. Since it's only ever called once, drop it and simply call xnfcalloc directly. Since xnfcalloc will never fail, there's no point in checking the result. Signed-off-by: Andres Salomon <[EMAIL PROTEC

[PATCH 1/2] xf86-video-intel: i830_driver: drop I830GetRec

2008-11-25 Thread Andres Salomon
There are a number of minor issues w/ I830GetRec: - pI830 is local, and therefore never gets used - it only ever returns TRUE (no need to check the result) - it's only ever called once, so there's not much point in protecting against multple calls So, this drops I830GetRec and instead just

Re: Is it possible to use i810 driver in Xorg7.3 without agpgart kernel module

2008-11-25 Thread Paulo César Pereira de Andrade
> Hi All, Hi, > Is it possible to use i810 driver in Xorg7.3 without agpgart kernel module > ? > I use kernel 2.4.31. And It's OK for XFree86 4.6. I think it should work with older versions of the i810 driver, as long the driver recognizes your hardware. Some months ago I worked on someth

Re: HOWTO for dual-head and ipnut device hotplugging

2008-11-25 Thread Matija Šuklje
Dne sreda 26. novembra 2008 je Peter Hutterer napisal(a): > thanks for writing that up. Quick skim left me with two comments: > synaptics fdi: Thanks for your quick proof-reading. It's greatly appreciated :] > don't specify the range unless you really need to. synaptics reads the > range from the

Re: xinput test crashes server when touchpad clicked

2008-11-25 Thread Peter Hutterer
On Wed, Nov 19, 2008 at 10:07:59PM +, Magnus Kessler wrote: > With the latest server and synaptics driver from git I can reliably crash > the server by starting > > xinput test "SynPS2/2 Synaptics Touchpad" > > and then clicking the any of the physical buttons or tapping the pad to > simula

Is it possible to use i810 driver in Xorg7.3 without agpgart kernel module

2008-11-25 Thread hinet
Hi All, Is it possible to use i810 driver in Xorg7.3 without agpgart kernel module ? I use kernel 2.4.31. And It's OK for XFree86 4.6. -- Regards, Paul Lin ___ xorg mailing list xorg@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinf

Re: Simulating a lower resolution on the OLPC XO Laptop

2008-11-25 Thread Mathieu Comandon
Jordan Crouse a écrit : > Bert Freudenberg wrote: >> >> On 25.11.2008, at 17:37, Jordan Crouse wrote: >> >>> Bert Freudenberg wrote: On 25.11.2008, at 11:57, Strider wrote: > Hi, > I have a XO Laptop which is a nice machine machine with a high > res display of 1200x900 pixels. Th

Re: HOWTO for dual-head and ipnut device hotplugging

2008-11-25 Thread Peter Hutterer
On Tue, Nov 25, 2008 at 10:36:40PM +0100, Matija Šuklje wrote: > you've probably seen me (ab)use this list (as well as the bugzilla and > [EMAIL PROTECTED]) quite a bit in the past days. > > So, to make it up, I decided to write a HOWTO on what I learnt from all your > help. I hope it's of any u

Re: Blend modes take 3

2008-11-25 Thread Benjamin Otte
On Tue, Nov 25, 2008 at 10:10 PM, Soeren Sandmann <[EMAIL PROTECTED]> wrote: >- When mask is 0, there is no reason to read the source. > >- There is no reason to read the destination if the inverse > combined src/mask is 0 > Don't compilers take care of that? The code looks better to m

HOWTO for dual-head and ipnut device hotplugging

2008-11-25 Thread Matija Šuklje
Hullo, you've probably seen me (ab)use this list (as well as the bugzilla and [EMAIL PROTECTED]) quite a bit in the past days. So, to make it up, I decided to write a HOWTO on what I learnt from all your help. I hope it's of any use to anyone: http://matija.suklje.name/?q=node/56 Cheers, Mati

Re: [IDEA] shrink xrender featureset

2008-11-25 Thread Juliusz Chroboczek
> Wasn't the reason to do font rasterization primiary to give applications > more control over font rendering? If memory serves, Keith was trying to find a design to solve both issues with core fonts -- lack of flexibility and latency. There was an extended brain-storming session on the old XFree

Re: Blend modes take 3

2008-11-25 Thread Soeren Sandmann
"Benjamin Otte" <[EMAIL PROTECTED]> writes: > On Wed, Nov 19, 2008 at 7:00 PM, Soeren Sandmann <[EMAIL PROTECTED]> wrote: > > Hi Benjamin, > > > > Overall, the separable blend mode stuff looks good, except for the > > component alpha versions. > > > New update pushed to my git branches of pixman/c

Re: EXA and migration

2008-11-25 Thread Juliusz Chroboczek
>> Apparently, the current incarnation of EXA is built on the assumption that >> everything should be accelerated, and that when it isn't, it's a bug. Hence, >> it pays no attention whatsoever to the performance of software rendering. > That's not 'strong vocabulary' but simply baseless flamebait

Re: [synaptics] [patch] touchpad output noise that confuse driver

2008-11-25 Thread Nicolas Cavallari
Marius Gedminas wrote : > but I can't find the issue in the freedesktop bugzilla (was it never > forwarded upstream)? It was forwarded to the old upstream (http://web.telia.com/~u89404340/touchpad/) which was half-dead back then. ___ xorg mailing list

Re: EXA and migration [was: shrink xrender featureset]

2008-11-25 Thread Dave Airlie
On Wed, Nov 26, 2008 at 5:38 AM, Clemens Eisserer <[EMAIL PROTECTED]> wrote: >> That's not 'strong vocabulary' but simply baseless flamebait. > > Would it make sence to implement some fallback-optimizations like: > - Copy pictures without drawables (gradients) to a temporary surface, > if the drive

Re: [IDEA] shrink xrender featureset

2008-11-25 Thread Clemens Eisserer
> The other point is that having time-consuming operations in the server > increases client latency. Before Render, all font rasterisation happened > in the server, and this would cause noticeable pauses (with the whole > server frozen, not just a single client). Wasn't the reason to do font raste

Re: EXA and migration [was: shrink xrender featureset]

2008-11-25 Thread Clemens Eisserer
> That's not 'strong vocabulary' but simply baseless flamebait. Would it make sence to implement some fallback-optimizations like: - Copy pictures without drawables (gradients) to a temporary surface, if the driver supports composition? - Support solid write-only operations (X11 core drawing) for

Re: EXA and migration [was: shrink xrender featureset]

2008-11-25 Thread Michel Dänzer
On Tue, 2008-11-25 at 19:54 +0100, Juliusz Chroboczek wrote: > > Sorry just to clarify - can't Xorg draw a gradient directly to the pixmap > > over PCI, rather than migrating the pixmap out of the video card? > > We've been flaming on this subject on this list before. > > Apparently, the current

Re: [IDEA] shrink xrender featureset

2008-11-25 Thread Juliusz Chroboczek
> Well if you let me decide between software rendering on client or > software rendering on server, I would prefer the latter. It's not that clear cut. At least some of the motivation behind Render is about moving time-consuming operations into the client, notably font rasterisation. There are

EXA and migration [was: shrink xrender featureset]

2008-11-25 Thread Juliusz Chroboczek
> Sorry just to clarify - can't Xorg draw a gradient directly to the pixmap > over PCI, rather than migrating the pixmap out of the video card? We've been flaming on this subject on this list before. Apparently, the current incarnation of EXA is built on the assumption that everything should be a

Re: Possible bitrot detected while compiling full xorg tree

2008-11-25 Thread Alan Coopersmith
Alex Villací­s Lasso wrote: > - driver/xf86-video-via generates an error about "expected > specifier-qualifier-list before 'uint32_t'" when including drm.h. I > skipped this one since my chipset is a radeon. That's rotted alright - I've pushed a build.sh change to stop building it. (The replacemen

Re: X server 1.6_beta1 pending pixman

2008-11-25 Thread Keith Packard
On Tue, 2008-11-25 at 19:17 +0100, Soeren Sandmann wrote: > Keith Packard <[EMAIL PROTECTED]> writes: > > > > - Pixman's version numbering scheme is similar to cairo's: The git > > > master version has an odd micro number, released versions have even > > > micro numbers. > > > > What version

Re: [synaptics] [patch] touchpad output noise that confuse driver

2008-11-25 Thread Marius Gedminas
On Tue, Nov 25, 2008 at 09:46:38AM +1000, Peter Hutterer wrote: > On Sun, Nov 23, 2008 at 08:46:14PM +0100, Batchty wrote: > > Hello, I have a Dell Inspiron 1520 with a Synaptics touchpad. This touchpad > > for > > a unknown reason loves to send event like these after every finger release > > :

Re: X server 1.6_beta1 pending pixman

2008-11-25 Thread Soeren Sandmann
Keith Packard <[EMAIL PROTECTED]> writes: > > - Pixman's version numbering scheme is similar to cairo's: The git > > master version has an odd micro number, released versions have even > > micro numbers. > > What version would you like? Before releasing, bump to 0.13.2, after releasing, bump

Re: X server 1.6_beta1 pending pixman

2008-11-25 Thread Keith Packard
On Tue, 2008-11-25 at 17:58 +0100, Soeren Sandmann wrote: > Keith Packard <[EMAIL PROTECTED]> writes: > > > So, we'll see if we can't get a bit of pixman review and perhaps a > > pixman release done tomorrow so that the X server beta can head out. > > Here are some comments on the matrix code. I

Re: dvorak works fine, but ctrl+ is wrong (not even qwerty)

2008-11-25 Thread Dieter Plaetinck
Peter Hutterer wrote: On Thu, Nov 20, 2008 at 09:24:56AM +0100, Dieter Plaetinck wrote: I'm using a regular ps/2 azerty keyboard but with dvorak layout. The problem is the dvorak layout by itself works fine, but when I press (and hold) ctrl the other buttons behave totally differently, some

Re: X server 1.6_beta1 pending pixman

2008-11-25 Thread Soeren Sandmann
Keith Packard <[EMAIL PROTECTED]> writes: > So, we'll see if we can't get a bit of pixman review and perhaps a > pixman release done tomorrow so that the X server beta can head out. Here are some comments on the matrix code. I didn't review all the numericals, but nothing jumped out at me either.

Re: Siliconmotion driver update for XFree 4.3?

2008-11-25 Thread Paulo Cesar Pereira de Andrade
Gerhart, Bjoern wrote: > Dear list, Hi, > in the past, our company got a siliconmotion driver update to release > 1.4.9 of the siliconmotion driver. But it seems that the features of > the 1.4.9 release have not been given back to the xorg developer > community. I have the source code for this

Siliconmotion driver update for XFree 4.3?

2008-11-25 Thread Gerhart, Bjoern
Dear list, in the past, our company got a siliconmotion driver update to release 1.4.9 of the siliconmotion driver. But it seems that the features of the 1.4.9 release have not been given back to the xorg developer community. I have the source code for this release, and it can be compiled again

Re: Additional NULL (??) layout group with evdev+hal

2008-11-25 Thread Thomas Fritzsche
Hi Peter, I`m just new to all this, but here is something odd: ... key { type[group1]= "FOUR_LEVEL", symbols[Group1]= [less, greater, bar, brokenbar ], symbols[Group2]= [less, greater ], symbols[Group3]= [

Re: Simulating a lower resolution on the OLPC XO Laptop

2008-11-25 Thread Strider
On Tue, Nov 25, 2008 at 12:52 PM, <[EMAIL PROTECTED]> wrote: > On Tue, Nov 25, 2008 at 11:57:17AM +0100, Strider wrote: > > The problem with this is that the laptop isn't powerful enugh > > to handle fullscreen applications at this resolution. > > All those I have tried have worked fine at this re

Re: DeliverPropertyEvent() accessing unallocated memory

2008-11-25 Thread Matthieu Herrb
Adam Jackson wrote: > On Sat, 2008-11-22 at 13:07 +0100, Matthieu Herrb wrote: >> Matthieu Herrb wrote: >>> Hi, >>> >>> using OpenBSD's memory allocator (which has an option to fill free()'d >>> memory with a specific pattern) I found out that xserver 1.5.3 is >>> dumping core on exit. >> Same prob

Re: Is Xephyr going to support GLX in a near future?

2008-11-25 Thread Kārlis Repsons
On Tuesday 25 November 2008 13:11:24 you wrote: > Kārlis Repsons wrote: > > One more sad thing: Xephyr doesn't support GLX, which means, most likely > > no 3D for it's users... I would like to ask someone better informed here, > > if that is going to be addressed in near future? > > From an earlier

Re: Is Xephyr going to support GLX in a near future?

2008-11-25 Thread Kamalneet Singh
Kārlis Repsons wrote: > One more sad thing: Xephyr doesn't support GLX, which means, most likely no > 3D > for it's users... I would like to ask someone better informed here, if that > is going to be addressed in near future? From an earlier post by ajax: "Xephyr supports GLX. It's even accel

Simulating a lower resolution on the OLPC XO Laptop

2008-11-25 Thread Strider
Hi, I have a XO Laptop which is a nice machine machine with a high res display of 1200x900 pixels. The problem with this is that the laptop isn't powerful enugh to handle fullscreen applications at this resolution. If only the display could switch to a lower resolution things would be much better b

Re: dvorak works fine, but ctrl+ is wrong (not even qwerty)

2008-11-25 Thread Peter Hutterer
On Thu, Nov 20, 2008 at 09:24:56AM +0100, Dieter Plaetinck wrote: > I'm using a regular ps/2 azerty keyboard but with dvorak layout. The > problem is the dvorak layout by itself works fine, but when I press (and > hold) ctrl the other buttons behave totally differently, some seem to be > qwerty ag

Re: ctrl+ incorrect/missing keycodes with dvorak layout

2008-11-25 Thread Dieter Plaetinck
Hi again list, I still haven't managed to figure this one out. the resulting keycodes when holding control are 'weird', to say at least. Any help is appreciated. Dieter Plaetinck wrote: > Hi list, > I'm using: > xorg 7.4 > xorg-server 1.5.3 > xkeyboard-config 1.4 > > I'm using a regular ps/2 aze

Re: Dinamically switch between Xinerama and Multiseat

2008-11-25 Thread Kārlis Repsons
On Monday 24 November 2008 16:29:12 Tobias Kaminsky wrote: > Hello, > > I have 2 TFTs with each 1280x1024. > Normally I work alone on the pc -> Xinerama. > But sometimes my girlfriend wants to work on the pc, too. But I do not want > to log out, change KDM and log in again. > > So I need something

Re: [PULL] input fixes for server-1.5-branch

2008-11-25 Thread Rémi Cardona
Le 25/11/2008 02:09, Peter Hutterer a écrit : > Ajax, > > Please pull a few input fixes for server-1.5-branch: What about this patch from you? We've had it in our branch for a while and it helped quite a few users. http://cvs.fedoraproject.org/viewvc/rpms/xorg-x11-server/devel/xserver-1.5.0-forc