Re: how exactly does X11 work with virtual terminals?

2011-12-26 Thread James Strother
Awesome. That is exactly what I needed. Thanks! On Mon, Dec 19, 2011 at 6:01 PM, Alan Coopersmith alan.coopersm...@oracle.com wrote: On 12/19/11 14:20, James Strother wrote: Quite honestly, I have only a basic understanding for what the virtual terminals are and how they work, so I am

Re: Looking for **PAID** help with calling XSendEvent correctly

2011-12-23 Thread Sam Spilsbury
On Thu, Dec 22, 2011 at 9:20 AM, Aryeh Friedman aryeh.fried...@gmail.com wrote: I have a Java program that calls the following code but somehow the events are not rebroadcasted... from my very limited knowledge of X (I have known C for years but never used it for GUI work) I highly suspect I

Re: Looking for **PAID** help with calling XSendEvent correctly

2011-12-23 Thread Aryeh Friedman
Thanks for the clue it was not exactly what you said but it gave me the right idea (namely instead of rebroadcasting I use normal method calling to make a callback in Java for the keystroke) On Fri, Dec 23, 2011 at 4:58 AM, Sam Spilsbury smspil...@gmail.com wrote: On Thu, Dec 22, 2011 at 9:20

Re: XInput: Atmel maXTouch Digitizer touch screen

2011-12-22 Thread Ben Bucksch
On 22.12.2011 07:41, Chase Douglas wrote: You can fiddle with the input class like you have been to resolve this. Add these lines to your input class: Driver evdev Option Mode Absolute I did this, but then the clicks by tapping don't work at all anymore. I.e. mouse cursor follows my finger,

Re: XInput: Atmel maXTouch Digitizer touch screen

2011-12-22 Thread Chase Douglas
On 12/22/2011 04:48 AM, Ben Bucksch wrote: On 22.12.2011 07:41, Chase Douglas wrote: You can fiddle with the input class like you have been to resolve this. Add these lines to your input class: Driver evdev Option Mode Absolute I did this, but then the clicks by tapping don't work at all

Looking for **PAID** help with calling XSendEvent correctly

2011-12-22 Thread Aryeh Friedman
I have a Java program that calls the following code but somehow the events are not rebroadcasted... from my very limited knowledge of X (I have known C for years but never used it for GUI work) I highly suspect I some how got the second arg wrong (it seems that the JAWT window ID is not the same

Looking for **PAID** help with calling XSendEvent correctly

2011-12-22 Thread Aryeh Friedman
I have a Java program that calls the following code but somehow the events are not rebroadcasted... from my very limited knowledge of X (I have known C for years but never used it for GUI work) I highly suspect I some how got the second arg wrong (it seems that the JAWT window ID is not the same

[ANNOUNCE] libXi 1.5.99.2

2011-12-21 Thread Peter Hutterer
A rather small set of changes, the XI 2.2 additions are all in just one patch instead of a set of them. Grab this one if you want to start testing multitouch features (once the server is there). Peter Hutterer (3): Bump to 1.5.99.1 Implement support for XI 2.2 libXi 1.5.99.2

[ANNOUNCE] libXi 1.5.99.2

2011-12-21 Thread Peter Hutterer
A rather small set of changes, the XI 2.2 additions are all in just one patch instead of a set of them. Grab this one if you want to start testing multitouch features (once the server is there). Peter Hutterer (3): Bump to 1.5.99.1 Implement support for XI 2.2 libXi 1.5.99.2

[ANNOUNCE] xinput 1.5.4

2011-12-21 Thread Peter Hutterer
One fix required for xinput to work when compiled against newer inputproto headers. Without this fix, xinput will check the server for whichever the current protocol version is (or higher) and fail if that version is not present. If you are updating the inputproto headers to 2.1 or a 2.2RC, you

Re: XInput: Atmel maXTouch Digitizer touch screen

2011-12-21 Thread Peter Hutterer
On Wed, Dec 21, 2011 at 11:52:39PM +0100, Ben Bucksch wrote: I have unsuccessfully tried the whole day to configure the Atmel maXTouch Digitizer with USB ID 03eb:211c . This is a touch screen and does appear in X.org as input device. It is working rudimentary, but bad enough to be unusable.

Re: XInput: Atmel maXTouch Digitizer touch screen

2011-12-21 Thread Ben Bucksch
Hey Chase, thanks for your answer. On 22.12.2011 01:41, Chase Douglas wrote: A capture of the evdev events would be necessary to debug the issue. You can use evtest to do this. Done http://www.bucksch.org/xfer/1.evtest The beginning of the log is my finger moving across the screen, in all 4

Re: XInput: Atmel maXTouch Digitizer touch screen

2011-12-21 Thread Chase Douglas
On 12/21/2011 09:25 PM, Ben Bucksch wrote: Hey Chase, thanks for your answer. On 22.12.2011 01:41, Chase Douglas wrote: A capture of the evdev events would be necessary to debug the issue. You can use evtest to do this. Done http://www.bucksch.org/xfer/1.evtest Your driver is

[ANNOUNCE] libXi 1.5.0

2011-12-20 Thread Peter Hutterer
libXi 1.5.0 is an interim version of libXi that includes the smooth scrolling support that XI 2.1 brings. Note that no servers released by X.Org currently supports smooth scrolling, this feature is still limited to the 1.12 development versions. In addition to the smooth scrolling support, this

[ANNOUNCE] inputproto 2.1.99.4

2011-12-20 Thread Peter Hutterer
The XI 2.2 (multitouch) protocol spec is now merged into master, so here's a new snapshot after the merge. Most of these commits were part of XI 2.1, the announce generator is a bit naïve. No functional changes in the input protocol since 2.1.99.3. The protocol does not require any configure

[ANNOUNCE] libXi 1.5.0

2011-12-20 Thread Peter Hutterer
libXi 1.5.0 is an interim version of libXi that includes the smooth scrolling support that XI 2.1 brings. Note that no servers released by X.Org currently supports smooth scrolling, this feature is still limited to the 1.12 development versions. In addition to the smooth scrolling support, this

[ANNOUNCE] inputproto 2.1.99.4

2011-12-20 Thread Peter Hutterer
The XI 2.2 (multitouch) protocol spec is now merged into master, so here's a new snapshot after the merge. Most of these commits were part of XI 2.1, the announce generator is a bit naïve. No functional changes in the input protocol since 2.1.99.3. The protocol does not require any configure

[ANNOUNCE] libXi 1.4.5

2011-12-19 Thread Peter Hutterer
libXi 1.4.4 caused requests to fail if the library was built against 2.1 or 2.2 protocol headers. Instead of requiring 2.0 for XI2 requests, the library required the protocol version (2.1 or 2.2 depending on the proto) and failed if the server did not support that version. This again caused

how exactly does X11 work with virtual terminals?

2011-12-19 Thread James Strother
Hello, I posted to this list a few days ago, and received enough help that I was able to push through to the next problem (thanks again). Briefly, I would like to have two separate monitors connected to the same machine, each running from a separate graphics card and a separate instance of Xorg.

Re: how exactly does X11 work with virtual terminals?

2011-12-19 Thread Alan Coopersmith
On 12/19/11 14:20, James Strother wrote: Quite honestly, I have only a basic understanding for what the virtual terminals are and how they work, so I am baffled as to how I would resolve this issue. Does Xorg really need a virtual terminal, or can I start it without one? Is there another way to

Re: xorg Digest, Vol 77, Issue 8

2011-12-18 Thread masoud javadieh
Hi everybody How can I find best resolution for L1752S LG monitor and make changes in xorg.conf. Is there any other solution? My fedora14 does not recognize the monitor. Thanks ___ xorg@lists.freedesktop.org: X.Org support Archives:

[ANNOUNCE] xorg-server 1.11.3

2011-12-17 Thread Jeremy Huddleston
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 == Description == xorg-server 1.11.3 is the third maintenance release of the 1.11 branch of the X11 server. It contains fixes for various crashes and other correctness issues fixed since the previous release. == Known Issues == Important issues

[ANNOUNCE] xorg-server 1.11.99.2

2011-12-17 Thread Keith Packard
Here's the second 1.12 snapshot release. Most of this is cleanups from alanc and preparatory work for the Xi 2.2 integration. It looks like that piece is nearly ready to merge; Peter has put the changes out for review. When that's finished, the merge window will be closed. There are a couple of

[ANNOUNCE] xorg-server 1.11.99.2

2011-12-17 Thread Keith Packard
Here's the second 1.12 snapshot release. Most of this is cleanups from alanc and preparatory work for the Xi 2.2 integration. It looks like that piece is nearly ready to merge; Peter has put the changes out for review. When that's finished, the merge window will be closed. There are a couple of

[ANNOUNCE] libXi 1.4.4

2011-12-15 Thread Peter Hutterer
libXi 1.4.4 comes with two memory fixes that can cause crashes in clients. Commit Handle unknown device classes can only be triggered when libXi 1.4.x runs against the git X server. If the XIQueryDevice() reply contained classes unknown to libXi, we didn't allocate memory for these classes and

[ANNOUNCE] inputproto 2.1

2011-12-15 Thread Peter Hutterer
We haven't had any change requests to the 2.1 protocol changes and the 2.2 changes are about to be done soon too. Time for a release. inputproto contains the protocol specification and header files for the X Input Extension. This release introduces two new features: - smooth scrolling support

Re: help with xorg.conf

2011-12-15 Thread James Strother
Hi Alan, Thanks for the info, that fixed the first problem. I had assumed that Xorg was looking in the config dir listed in the Xorg log, which was obviously a poor assumption. Thanks again, James On Wed, Dec 14, 2011 at 8:11 PM, Alan Coopersmith alan.coopersm...@oracle.com wrote: On

[ANNOUNCE] libXi 1.4.4

2011-12-15 Thread Peter Hutterer
libXi 1.4.4 comes with two memory fixes that can cause crashes in clients. Commit Handle unknown device classes can only be triggered when libXi 1.4.x runs against the git X server. If the XIQueryDevice() reply contained classes unknown to libXi, we didn't allocate memory for these classes and

[ANNOUNCE] inputproto 2.1

2011-12-15 Thread Peter Hutterer
We haven't had any change requests to the 2.1 protocol changes and the 2.2 changes are about to be done soon too. Time for a release. inputproto contains the protocol specification and header files for the X Input Extension. This release introduces two new features: - smooth scrolling support

relation between kernel input events and leds

2011-12-14 Thread Rafał Mużyło
This might not be 100% on-topic for this list, but it's the closest list I'm familiar with. I've got a mouse without a horizontal wheel. I've came across a piece of code, that was written for for emulating mouse buttons via keyboard. It grabs input/event* nodes and uses uinput to substitute

Re: help with xorg.conf

2011-12-14 Thread Alan Coopersmith
On 12/14/11 14:08, James Strother wrote: Problem 1: Unable to access config file at non-default location as non-root - This seems like an extremely simple problem, but I'm stumped. I have

[ANNOUNCE] libdrm 2.4.29

2011-12-13 Thread Chris Wilson
This publishes some new API for Intel to be able to cap the number of VMA that libdrm_intel caches amongst its bo. This is intended to be used by clients to prevent applications (such as the xserver) from exhausting their per-process limits on inactive GTT mmaps whilst also mitigating against the

[ANNOUNCE] inputproto 2.1.99.3

2011-12-13 Thread Chase Douglas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chase Douglas (3): Touch IDs must be globally unique State that future touch IDs are indeterminate inputproto 2.1.99.3 Peter Hutterer (1): Remove XI2.1 and XI2.2 warnings and errors git tag: inputproto-2.1.99.3

[ANNOUNCE] inputproto 2.1.99.3

2011-12-13 Thread Chase Douglas
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Chase Douglas (3): Touch IDs must be globally unique State that future touch IDs are indeterminate inputproto 2.1.99.3 Peter Hutterer (1): Remove XI2.1 and XI2.2 warnings and errors git tag: inputproto-2.1.99.3

Re: evdev input module and multiple X screen support

2011-12-12 Thread Curtis Rubel
Peter, I have been looking at this for a while and have not been able to get my system setup correctly as it is a rather complex setup. I have 4 monitors on this system. The first one is NOT a touch screen and is at 800X600, the other 3 are touch screens at 1280X1024, with the center of those

Re: evdev input module and multiple X screen support

2011-12-12 Thread Curtis Rubel
Peter, I did attempt to try setting the values to those I sent you below and when I touch any of the touch screens, my cursor still remains in the first monitor screen and I never see it move to any of the other 3 touch monitors. Is there something else I need to do other than set the xinput

Re: evdev input module and multiple X screen support

2011-12-12 Thread Peter Hutterer
On Mon, Dec 12, 2011 at 09:02:29AM -0500, Curtis Rubel wrote: Peter, I have been looking at this for a while and have not been able to get my system setup correctly as it is a rather complex setup. I have 4 monitors on this system. The first one is NOT a touch screen and is at 800X600,

Re: evdev input module and multiple X screen support

2011-12-12 Thread Curtis Rubel
Peter, What I am seeing when I run with the settings I sent you below, is that the cursor actually stays in the first monitor. However it appear to be scaled so that as I touch the other 3 touch screens the cursor will move further and further right until I am finally on my last touch screen

Re: evdev input module and multiple X screen support

2011-12-11 Thread Curtis Rubel
Thank you... I will take a look at the new info Regards Curtis Rubel Sent from my iPhone On Dec 9, 2011, at 23:37, Peter Hutterer peter.hutte...@who-t.net wrote: On Fri, Dec 09, 2011 at 12:47:10PM -0500, Curtis Rubel wrote: Hello xorg... Can someone tell me if multiple X screen support

Re: Good afternoon

2011-12-10 Thread walter harms
hi Samuel, i have never heard about virtual gl and it seems that this is more a problem of VirtualGL. i used google to found the mail below may be it can help you. http://www.mail-archive.com/virtualgl-users@lists.sourceforge.net/msg00023.html re, wh Am 09.12.2011 08:48, schrieb Samuel

[ANNOUNCE] xorg-server 1.11.2.902 (1.11.3 RC2)

2011-12-09 Thread Jeremy Huddleston
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 == Description == This is the second release candidate for xorg-server 1.11.3 and contains fixes for various crashes and correctness issues fixed since the previous release. == Known Issues == Important issues are listed in the 1.11 tracker bug:

evdev input module and multiple X screen support

2011-12-09 Thread Curtis Rubel
Hello xorg... Can someone tell me if multiple X screen support is planned for the evdev input module? We have a number of multiple X screen systems here running Xorg using the older evtouch input library and from what I can see it appears this module is no longer supported and being replaced by

[ANNOUNCE] xorg-server 1.11.2.902 (1.11.3 RC2)

2011-12-09 Thread Jeremy Huddleston
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 == Description == This is the second release candidate for xorg-server 1.11.3 and contains fixes for various crashes and correctness issues fixed since the previous release. == Known Issues == Important issues are listed in the 1.11 tracker bug:

Re: evdev input module and multiple X screen support

2011-12-09 Thread Peter Hutterer
On Fri, Dec 09, 2011 at 12:47:10PM -0500, Curtis Rubel wrote: Hello xorg... Can someone tell me if multiple X screen support is planned for the evdev input module? We have a number of multiple X screen systems here running Xorg using the older evtouch input library and from what I can see

Good afternoon

2011-12-08 Thread Samuel Boateng
Hello, I just installed VirtualGL-2.2.90 on my machine which runs on Centos5.7. After installation I had to test to see if everything was successful but unfortunately I encountered this error: Xlib: Extension GLX missing on display 0:0, Error: Couldn't get an RGB Double Buffered visual. I have

[ANNOUNCE] util-macros 1.16.0

2011-12-07 Thread Gaetan Nadon
Alan Coopersmith (4): Add an optional argument to XORG_LD_WRAP Define __wrap_exit in test program source for XORG_LD_WRAP Add XORG_MEMORY_CHECK_FLAGS and require it in XORG_ENABLE_UNIT_TESTS XORG_TESTSET_CFLAG: Try to both compile link with the flags Gaetan Nadon (1):

Re: rRadeon 9000 + X.Org 1.11.2 + EnablePageFlip + opengl = crash

2011-12-07 Thread Michel Dänzer
On Die, 2011-12-06 at 17:44 -0500, Alex Deucher wrote: On Tue, Dec 6, 2011 at 5:04 PM, Giuliano Pochini poch...@shiny.it wrote: I also tried KMS. When EnablePageFlip is enabled glxgears renders nothing and X freezes immediately except the mouse pointer. After a few second the screen

[ANNOUNCE] util-macros 1.16.0

2011-12-07 Thread Gaetan Nadon
Alan Coopersmith (4): Add an optional argument to XORG_LD_WRAP Define __wrap_exit in test program source for XORG_LD_WRAP Add XORG_MEMORY_CHECK_FLAGS and require it in XORG_ENABLE_UNIT_TESTS XORG_TESTSET_CFLAG: Try to both compile link with the flags Gaetan Nadon (1):

Re: Question about pixman,x11perf and xserver

2011-12-06 Thread Adam Jackson
On 12/5/11 6:39 AM, 杨帅 wrote: 1.I recompile the pixman with enable-neon,but when I use the x11perf for testing ,I can‘t see the significant difference between the pixman with neon and pixman without neon.That's why? Presumably because you're not hitting a neon-accelerated path. You've not

Re: rRadeon 9000 + X.Org 1.11.2 + EnablePageFlip + opengl = crash

2011-12-06 Thread Giuliano Pochini
On Tue, 6 Dec 2011 08:46:41 + Dave Airlie airl...@gmail.com wrote: On Mon, Dec 5, 2011 at 8:41 PM, Giuliano Pochini poch...@shiny.it wrote: First, my config: :00:10.0 VGA compatible controller: ATI Technologies Inc Radeon RV250 If [Radeon 9000] (rev 01) Linux Jay 3.1.0 #3

Question about pixman,x11perf and xserver

2011-12-05 Thread 杨帅
hi,all I'am using ubuntu running on our chip of cortex-a9 with neon.And there is no 2D/3D hardware in our chip.There are several questions during my trying to improve the user experience. 1.I recompile the pixman with enable-neon,but when I use the x11perf for testing ,I can‘t see the

Re: 8k resolution video causes X Error

2011-12-05 Thread Donald McLachlan
On 05/12/2011 2:03 AM, Maarten Maathuis wrote: On Sun, Dec 4, 2011 at 6:11 PM, Donald McLachlan donald.mclach...@crc.ca wrote: Hi, I don't know where to start to resolve this problem and guessed maybe this is a good place to start. If not, please point me in the right direction. Our

Re: 8k resolution video causes X Error

2011-12-05 Thread Donald McLachlan
On 05/12/2011 9:38 AM, Donald McLachlan wrote: On 05/12/2011 2:03 AM, Maarten Maathuis wrote: On Sun, Dec 4, 2011 at 6:11 PM, Donald McLachlan donald.mclach...@crc.ca wrote: Hi, I don't know where to start to resolve this problem and guessed maybe this is a good place to start. If not,

Re: Question about pixman,x11perf and xserver

2011-12-05 Thread Peter Harris
On 2011-12-05 06:39, 杨帅 wrote: 1.I recompile the pixman with enable-neon,but when I use the x11perf for testing ,I can‘t see the significant difference between the pixman with neon and pixman without neon.That's why? x11perf is an older test suite, and mostly only tests core graphics. Only

Re: 8k resolution video causes X Error

2011-12-05 Thread Alan Cox
/usr/lib64/xorg/modules/drivers/nvidia_drv.so [ 180.902] (II) Module nvidia: vendor=NVIDIA Corporation [ 180.902] compiled for 4.0.2, module version = 1.0.0 [ 180.902] Module class: X.Org Video Driver [ 180.902] (II) NVIDIA dlloader X Driver 285.05.09 Fri

rRadeon 9000 + X.Org 1.11.2 + EnablePageFlip + opengl = crash

2011-12-05 Thread Giuliano Pochini
First, my config: :00:10.0 VGA compatible controller: ATI Technologies Inc Radeon RV250 If [Radeon 9000] (rev 01) Linux Jay 3.1.0 #3 SMP Tue Nov 1 17:58:39 CET 2011 ppc 7455, altivec supported PowerMac3,6 GNU/Linux When EnablePageFlip is enabled the machine crashes as soon as another

Re:Re: Question about pixman,x11perf and xserver

2011-12-05 Thread 杨帅
hi,Peter Thanks for your reply~ Now I got the direction! I will try to optimize the xserver/fb and use the cairo-perf-trace for testing Best Regards, David 在 2011-12-05 23:47:57,Peter Harris phar...@opentext.com 写道: On 2011-12-05 06:39, 杨帅 wrote: 1.I recompile the pixman with

8k resolution video causes X Error

2011-12-04 Thread Donald McLachlan
Hi, I don't know where to start to resolve this problem and guessed maybe this is a good place to start. If not, please point me in the right direction. Our ultimate goal is to stream 8k resolution video using sage (see www.sagecommons.org). - We first used ffmpeg to convert a 4k

Re: 8k resolution video causes X Error

2011-12-04 Thread Maarten Maathuis
On Sun, Dec 4, 2011 at 6:11 PM, Donald McLachlan donald.mclach...@crc.ca wrote: Hi, I don't know where to start to resolve this problem and guessed maybe this is a good place to start. If not, please point me in the right direction. Our ultimate goal is to stream 8k resolution video using

Re: [Xcb] [admin] X.Org list configuration change

2011-12-03 Thread Josh Triplett
[Dropping the CCs to announce and commit lists.] On Fri, Dec 02, 2011 at 06:19:44PM +, Daniel Stone wrote: Hi all, To clean things up a bit, we will be moving the following lists from lists.freedesktop.org to lists.x.org on Tuesday afternoon European time: xorg@lists.freedesktop.org

[admin] X.Org list configuration change

2011-12-02 Thread Daniel Stone
Hi all, To clean things up a bit, we will be moving the following lists from lists.freedesktop.org to lists.x.org on Tuesday afternoon European time: xorg@lists.freedesktop.org xorg-annou...@lists.freedesktop.org xorg-com...@lists.freedesktop.org x...@lists.freedesktop.org

Re: [Xcb] [admin] X.Org list configuration change

2011-12-02 Thread Daniel Stone
Hi, On 2 December 2011 18:34, Josh Triplett j...@joshtriplett.org wrote: On Fri, Dec 02, 2011 at 06:19:44PM +, Daniel Stone wrote: Hi all, To clean things up a bit, we will be moving the following lists from lists.freedesktop.org to lists.x.org on Tuesday afternoon European time: [...]

Sticky keys auto unlatch timeout

2011-12-01 Thread Andre Majorel
Is there a way to specify a timeout for sticky keys ? EG all modifiers be automatically unlatched after 1 second without keyboard activity ? Expiry turns the feature off completely. I just need to unlatch. Thanks in advance. -- André Majorel http://www.teaser.fr/~amajorel/

Selective stickiness

2011-12-01 Thread Andre Majorel
Is there is a way to say which keys should be sticky ? For some, a sticky [alt] is arguably more dangerous than useful. Especially if there is no timeout. -- André Majorel http://www.teaser.fr/~amajorel/ ___ xorg@lists.freedesktop.org: X.Org support

synaptics driver for my touchpad

2011-11-29 Thread Martin Bruse
Hello list! I bought a Samsung 900X3A-B01SE (also known as a Samsung Series 9 with Intel i5 sold in Sweden) today. It has a Synaptic touchpad, but it doesn't get recognized as a touchpad by the synaptics input driver. I just gets recognized as a regular mouse device. How can I produce some kind

[ANNOUNCE] xorg-server 1.11.2.901 (1.11.3 RC1)

2011-11-28 Thread Jeremy Huddleston
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 == Description == This is the first release candidate for xorg-server 1.11.3 and contains fixes for various crashes and correctness issues fixed since the previous release. Sorry for this being a few days late. Blame Thanksgiving ;) == Known

Re: EXA performance problem

2011-11-28 Thread Christoph Bartoschek
Am 28.11.2011 07:43, schrieb Maarten Maathuis: ___ xorg@lists.freedesktop.org: X.Org support Archives: http://lists.freedesktop.org/archives/xorg Info: http://lists.freedesktop.org/mailman/listinfo/xorg Your subscription address: madman2...@gmail.com

Re: Disabling EXA

2011-11-28 Thread Alex Deucher
On Sat, Nov 26, 2011 at 10:33 AM, Christoph Bartoschek bartosc...@or.uni-bonn.de wrote: Hi, how can I disable EXA and use XAA? I am on opensuse and added the following section to /etc/X11/xorg.conf.d/50-device.conf: Section Device  Option AccelMethod xaa  Identifier Default Device

Re: hdmi output not detected by xrandr

2011-11-28 Thread sashan
On Tue Nov 29 00:00:34 2011, sashan wrote: On Sun Nov 27 18:51:03 2011, sashan wrote: On Sat Nov 26 22:13:49 2011, Keith Packard wrote: On Sun, 27 Nov 2011 16:01:52 +1100, sashan sas...@zenskg.net wrote: Hi I'm trying to figure out why the external hdmi output on my laptop

Re: EXA performance problem

2011-11-28 Thread Christoph Bartoschek
Am 28.11.2011 10:35, schrieb Christoph Bartoschek: Now one has to look at (*pGC-ops-PolyRectangle)(pDrawable, pGC, nRects, pRects); Here is what I see so far: - damagePolyRectangle is called for 2044 rectangles. - the damage region is computed it consists of about 1000 rectangles each

Re: [ANNOUNCE] xf86-video-ati 6.14.3

2011-11-28 Thread samuel
snip      * vdpau/XvMC support (currently only available for = R3xx via        Gallium3D). /snip How can i test this? Do I need to configure something? Is there a way to check if this works? Hardware: fusion e350 in lenovo x121e ___

Re: EXA performance problem

2011-11-28 Thread Maarten Maathuis
On Mon, Nov 28, 2011 at 4:49 PM, Christoph Bartoschek bartosc...@or.uni-bonn.de wrote: Am 28.11.2011 10:35, schrieb Christoph Bartoschek: Now one has to look at (*pGC-ops-PolyRectangle)(pDrawable, pGC, nRects, pRects); Here is what I see so far: - damagePolyRectangle is called for 2044

Re: [ANNOUNCE] xorg-server 1.11.99.1

2011-11-27 Thread Peter Hutterer
On Sun, Nov 20, 2011 at 03:20:11PM -0800, Keith Packard wrote: We discussed doing regular releases from master, and Jeremy suggested (sensibly) that we just do them whenever there's a stable release. I completely spaced that plan, nor was I looking at the Google X.org calendar. In any

Re: [ANNOUNCE] xorg-server 1.11.99.1

2011-11-27 Thread Peter Hutterer
On Sun, Nov 27, 2011 at 07:29:53PM -0800, Keith Packard wrote: On Mon, 28 Nov 2011 11:39:31 +1000, Peter Hutterer peter.hutte...@who-t.net wrote: We probably won't get X Input 2.2 done if the release is moved forward to Feb 8th. What's the date for the merge window end? If we followed

Re: [ANNOUNCE] xorg-server 1.11.99.1

2011-11-27 Thread Keith Packard
On Mon, 28 Nov 2011 13:36:35 +1000, Peter Hutterer peter.hutte...@who-t.net wrote: On Sun, Nov 27, 2011 at 07:29:53PM -0800, Keith Packard wrote: On Mon, 28 Nov 2011 11:39:31 +1000, Peter Hutterer peter.hutte...@who-t.net wrote: We probably won't get X Input 2.2 done if the release is

trouble with touch-sensitive mute button on Lenovo Ideapad Z560

2011-11-27 Thread Uno
Hi all! Sorry for my bad english, I'm from Russia. I have trouble with touch-sensitive mute button on my laptop Lenovo Ideapad Z560-3KB. On console (system start without X Server) button send keycode, but, button backlight not changed. But, when I start X Server, and the volume is turned on -

obliging X to start with 1280x1024

2011-11-27 Thread Karl Sinn
Hi, since some time I have the problem with one of my monitors that X most of the time starts with a very low screen-resolution. My way to deal this at the moment is to init 3/5 with switching off/on the screen until X starts with the proper resolution of 1280x1024. The system always boots

EXA performance problem

2011-11-27 Thread Christoph Bartoschek
Hi, I still have a huge performance problem with Xorg. One application that painted 2 Mio rectangles on the screen within a second or so with XFree86 needs about a minute with Xorg. Most of the time is spent in libpixman. I've added some debug statements and see that pixman_raster_op is

Re: EXA performance problem

2011-11-27 Thread Maarten Maathuis
On Sun, Nov 27, 2011 at 3:55 PM, Christoph Bartoschek bartosc...@or.uni-bonn.de wrote: Hi, I still have a huge performance problem with Xorg. One application that painted 2 Mio rectangles on the screen within a second or so with XFree86 needs about a minute with Xorg. Most of the time is

Re: EXA performance problem

2011-11-27 Thread Chris Wilson
On Sun, 27 Nov 2011 15:55:12 +0100, Christoph Bartoschek bartosc...@or.uni-bonn.de wrote: Hi, I still have a huge performance problem with Xorg. One application that painted 2 Mio rectangles on the screen within a second or so with XFree86 needs about a minute with Xorg. The easiest way

Re: EXA performance problem

2011-11-27 Thread Christoph Bartoschek
Am 27.11.2011 16:13, schrieb Maarten Maathuis: On Sun, Nov 27, 2011 at 3:55 PM, Christoph Bartoschek bartosc...@or.uni-bonn.de wrote: Hi, I still have a huge performance problem with Xorg. One application that painted 2 Mio rectangles on the screen within a second or so with XFree86 needs

Re: EXA performance problem

2011-11-27 Thread Maarten Maathuis
On Sun, Nov 27, 2011 at 9:40 PM, Christoph Bartoschek bartosc...@or.uni-bonn.de wrote: Am 27.11.2011 16:13, schrieb Maarten Maathuis: On Sun, Nov 27, 2011 at 3:55 PM, Christoph Bartoschek bartosc...@or.uni-bonn.de  wrote: Hi, I still have a huge performance problem with Xorg. One

Re: What will happen when the X server doesn't support XKB(XKEYBOARD)

2011-11-27 Thread Peter Hutterer
On Mon, Nov 21, 2011 at 07:35:21PM +0800, Adam Q wrote: There is a X server for win32 which doesn't support XKB extension(I know it's unbelievable). There is something strange when I try to use the gnome-keyboard-properties and system-config-keyboard to change the X server's keyboard

Re: EXA performance problem

2011-11-27 Thread Christoph Bartoschek
I have new information. I am no longer sure whether it is a problem with EXA. I have a testcase that currently takes 90 seconds to draw all rectangles. I see that in damage.c two functions are mainly used: damagePolyRectangle damagePolyFillRectangle The first function calls for each given

Re: [ANNOUNCE] xorg-server 1.11.99.1

2011-11-27 Thread Keith Packard
On Mon, 28 Nov 2011 11:39:31 +1000, Peter Hutterer peter.hutte...@who-t.net wrote: We probably won't get X Input 2.2 done if the release is moved forward to Feb 8th. What's the date for the merge window end? If we followed the 1.11 schedule, the non-critical bug window would close three weeks

Re: [ANNOUNCE] xorg-server 1.11.99.1

2011-11-27 Thread Peter Hutterer
On Sun, Nov 27, 2011 at 07:29:53PM -0800, Keith Packard wrote: On Mon, 28 Nov 2011 11:39:31 +1000, Peter Hutterer peter.hutte...@who-t.net wrote: We probably won't get X Input 2.2 done if the release is moved forward to Feb 8th. What's the date for the merge window end? If we followed

Re: [ANNOUNCE] xorg-server 1.11.99.1

2011-11-27 Thread Keith Packard
On Mon, 28 Nov 2011 13:36:35 +1000, Peter Hutterer peter.hutte...@who-t.net wrote: On Sun, Nov 27, 2011 at 07:29:53PM -0800, Keith Packard wrote: On Mon, 28 Nov 2011 11:39:31 +1000, Peter Hutterer peter.hutte...@who-t.net wrote: We probably won't get X Input 2.2 done if the release is

Re: EXA performance problem

2011-11-27 Thread Maarten Maathuis
On Mon, Nov 28, 2011 at 2:41 AM, Christoph Bartoschek bartosc...@or.uni-bonn.de wrote: I have new information. I am no longer sure whether it is a problem with EXA. I have a testcase that currently takes 90 seconds to draw all rectangles. I see that in damage.c two functions are mainly used:

Re: EXA performance problem

2011-11-27 Thread Maarten Maathuis
On Mon, Nov 28, 2011 at 7:43 AM, Maarten Maathuis madman2...@gmail.com wrote: On Mon, Nov 28, 2011 at 2:41 AM, Christoph Bartoschek bartosc...@or.uni-bonn.de wrote: I have new information. I am no longer sure whether it is a problem with EXA. I have a testcase that currently takes 90 seconds

Disabling EXA

2011-11-26 Thread Christoph Bartoschek
Hi, how can I disable EXA and use XAA? I am on opensuse and added the following section to /etc/X11/xorg.conf.d/50-device.conf: Section Device Option AccelMethod xaa Identifier Default Device EndSection Xorg reads the file because it says in its logfile: [21.481] (==) RADEON(0):

hdmi output not detected by xrandr

2011-11-26 Thread sashan
Hi I'm trying to figure out why the external hdmi output on my laptop doesn't work but am not sure where the problem is or if this is the right mailing list. I've posted on distribution specific forums asking the same question but there hasn't been any response that leads to a fix. As far as

Re: hdmi output not detected by xrandr

2011-11-26 Thread Keith Packard
On Sun, 27 Nov 2011 16:01:52 +1100, sashan sas...@zenskg.net wrote: Hi I'm trying to figure out why the external hdmi output on my laptop doesn't work but am not sure where the problem is or if this is the right mailing list. I'd bet money that the hdmi connector is only hooked up to the

Re: hdmi output not detected by xrandr

2011-11-26 Thread sashan
On Sat Nov 26 22:13:49 2011, Keith Packard wrote: On Sun, 27 Nov 2011 16:01:52 +1100, sashan sas...@zenskg.net wrote: Hi I'm trying to figure out why the external hdmi output on my laptop doesn't work but am not sure where the problem is or if this is the right mailing list. I'd

Problem starting two X servers

2011-11-24 Thread Caio Ricci
Hello, I am trying to set a multi-seat station under Kubuntu 10.04, so i'm starting from the basics, starting two separate X servers in a station with two videocards. In my xorg.conf i have two ServerLayouts, correctly separated. I can start the video in the onboard card, but not on the

Re: Cannot setup dual monitors

2011-11-24 Thread Githin Alapatt
Sorry! I got that to work. I had not installed mesa-utils. This seemed to solve this problem. However, my graphics is quite slow. Text scrolls slowly in Iceweasel. I checked glxgears and got only 400fps in windowed view and about 50fps in full screen. All this time, my processor utilzation is

RE: The PCI device 0x10de087d (ION) at 02@00:00:0 has a kernel module claiming it.

2011-11-23 Thread Anatolii Ivashyna
Thanks for reply, as you told there is nouveau driver block my driver. Is this possible to unload it? All the best, Anatolii Ivashyna -Original Message- From: Aaron Plattner [mailto:aplatt...@nvidia.com] Sent: Tuesday, November 22, 2011 6:43 PM To: Anatolii Ivashyna Cc:

Cannot setup dual monitors

2011-11-23 Thread Githin Alapatt
Hello, I recently upgraded from lenny to squeeze and I no longer can get my external monitor working correctly on my laptop. lspci gives these 00:02.0 VGA compatible controller: Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller (rev 0c) 00:02.1 Display controller: Intel

Re: The PCI device 0x10de087d (ION) at 02@00:00:0 has a kernel module claiming it.

2011-11-23 Thread Corbin Simpson
On Wed, Nov 23, 2011 at 4:48 AM, Anatolii Ivashyna t...@aurora.com.ua wrote: Thanks for reply, as you told there is nouveau driver block my driver. Is this possible to unload it? All the best, Anatolii Ivashyna Is it not possible to just use the nouveau driver instead of nv? nv is pretty

[ANNOUNCE] s3switch 0.1

2011-11-22 Thread Tormod Volden
From: Tormod Volden debian.tor...@gmail.com From: Tormod Volden debian.tor...@gmail.com -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This is a new release of s3switch, a tool to manipulate video output on S3 Savage cards, written by Tim Roberts. This release mainly incorporates fixes and

Re: Failed to compile keymap using ptxdist

2011-11-22 Thread Wingston Sharon
thing is i cant find xkbcomp in menuconfig or kernelconfig.. i searched through.. is there an easy way to identify where the packages menu entry would be? [Wilson Wingston Sharon] On Mon, Nov 21, 2011 at 1:30 PM, Dirk Wallenstein hals...@t-online.de wrote: On Fri, Nov 18, 2011 at 02:09:17PM

  1   2   3   4   5   6   7   8   9   10   >