Re: Intel xf86-intel-video with G45: glxgears synchonised to VSYNC

2008-12-08 Thread Eric Anholt
On Mon, 2008-12-08 at 07:31 +, Terry Barnaby wrote: Hi, I am playing with an Intel G45FC Motherboard with a HDMI connected Samsung HDTV. I am using Fedora 10 as the base with the latest DRM/X11/mesa xf86-intel-video drivers from the Xorg GIT repository. In general this appears to be

[PATCH] mi: streamline CopyGetMasterEvent(), remove code duplication.

2008-12-08 Thread Peter Hutterer
Signed-off-by: Peter Hutterer [EMAIL PROTECTED] --- mi/mieq.c | 35 +-- 1 files changed, 17 insertions(+), 18 deletions(-) diff --git a/mi/mieq.c b/mi/mieq.c index 971edf9..f0eec26 100644 --- a/mi/mieq.c +++ b/mi/mieq.c @@ -277,25 +277,24 @@ void

[PATCH] dix: purge dead device-based window access code.

2008-12-08 Thread Peter Hutterer
Signed-off-by: Peter Hutterer [EMAIL PROTECTED] --- dix/window.c| 17 - include/windowstr.h |9 - 2 files changed, 0 insertions(+), 26 deletions(-) diff --git a/dix/window.c b/dix/window.c index c038799..88ab5e9 100644 --- a/dix/window.c +++ b/dix/window.c

[PATCH] Xext: un-export all XGE functions.

2008-12-08 Thread Peter Hutterer
These functions are only to be used by X server extensions, so let's not expose them to the world. Signed-off-by: Peter Hutterer [EMAIL PROTECTED] --- Xext/geext.h | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Xext/geext.h b/Xext/geext.h index

Re: [PATCH] mi: streamline CopyGetMasterEvent(), remove code duplication.

2008-12-08 Thread Daniel Stone
On Mon, Dec 08, 2008 at 06:13:36PM +1000, Peter Hutterer wrote: +int len = count * sizeof(xEvent); +xEvent *ev; + +/* Assumption: GenericEvents always have count 1 */ + +if (GEV(original)-type == GenericEvent) +len += GEV(original)-length * 4; + +ev =

Re: X-server doesn't start after boot-up

2008-12-08 Thread François-Denis Gonthier
raman narasimhan [EMAIL PROTECTED] writes: i've a debian etch system.. i'm using the grub loader.. immediately after the boot process when the login screen is to take over, instead of the login screen, i get this This list talks about the development of the X Window system on Linux. You

Get raw data of Xrender Picture structure

2008-12-08 Thread Gregoire Gentil
Hello, I would like to get the raw data of the Picture structure in Xrender. Basically, I would like to import into a GdkPixbuf, a picture returned by XRenderCreatePicture. There doesn't seem to be any data export function in Xrender. Any pointer how I could achieve this? Grégoire PS: What do I

Re: Get raw data of Xrender Picture structure

2008-12-08 Thread Peter Harris
Gregoire Gentil wrote: gdk_pixbuf_get_from_drawable returns garbage with a minimized windows and I think that xrender will return at least the outdated content of the window. Nope. XRender does not contain any functions that return the contents of a window, minimized or otherwise. Maybe you

Trying to use Radeon driver on Apple eMac

2008-12-08 Thread Joseph Adams
I'm struggling to get the Radeon driver to work on my eMac G4's Radeon 7500 card (the fbdev driver works fine at 1024x768 with no acceleration). On both Fedora 8 and Fedora 10 with default xorg.conf, the screen is blank (the CRT doesn't glow or anything). I have a CRT monitor that supports up to

GLX in Xephyr --or-- is there some other way to catch a desktop in a texture?

2008-12-08 Thread Ashi Krishnan
I was poking around the 7.4 release notes, and saw, hey, GLX passthrough for Xephyr! Great! I gave the version installed with Ubuntu (Intrepid) a whirl, and while OpenGL applications work*, they aren't accelerated (indirectly or no) which is what I would expect passthrough to mean. So,

Re: [PATCH] Xext: un-export all XGE functions.

2008-12-08 Thread Paulo César Pereira de Andrade
These functions are only to be used by X server extensions, so let's not expose them to the world. This will not work as expected if the X Server is compiled with hidden symbols. For the moment at least, it must be specified as both extern _X_EXPORT (what may be counter intuitive I agree).

Re: GLX in Xephyr --or-- is there some other way to catch a desktop in a texture?

2008-12-08 Thread Peter Harris
Ashi Krishnan wrote: What I'm trying to do: I want to capture all the windows of some arbitrary X application as GL textures, then render them in some way, without any of this output showing up on screen (except where I finally render things, obviously). Sounds like Project Looking Glass or

xf86-video-intel DRI broken in git master ( 'Calling driver entry point failed' )

2008-12-08 Thread Christian Beier
Hi there! Direct rendering is not working in the X.org i built from git yesterday. It basically complains about 'Calling driver entry point failed' when i try to start anything related to direct rendering and switches to SW rendering. I already made a bug report on this issue see here (maybe I'm

Re: GLX in Xephyr --or-- is there some other way to catch a desktop in a texture?

2008-12-08 Thread Ashi Krishnan
On Mon, Dec 8, 2008 at 2:20 PM, Peter Harris [EMAIL PROTECTED] wrote: Ashi Krishnan wrote: This is fine if (1) the app creates only one window, and (2) is quite cooperative with respect to where it draws that window -- like, say, the xscreensaver hacks. Maybe I'm dense, but I'm not seeing

Re: [PATCH] Xext: un-export all XGE functions.

2008-12-08 Thread Peter Hutterer
On Mon, Dec 08, 2008 at 09:20:57AM -0800, Alan Coopersmith wrote: Peter Hutterer wrote: These functions are only to be used by X server extensions, so let's not expose them to the world. What about extensions in loadable modules? good point. tbh the main reason for this patch is that I don't

RE: Get raw data of Xrender Picture structure

2008-12-08 Thread McDonald, Michael-p7438c
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Clemens Eisserer Sent: Monday, December 08, 2008 2:27 PM To: xorg list Subject: Re: Get raw data of Xrender Picture structure If its a pixmap, you can read it back using XGetImage or its SHM

Re: Get raw data of Xrender Picture structure

2008-12-08 Thread Peter Harris
McDonald, Michael-p7438c wrote: -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Clemens Eisserer If its a pixmap, you can read it back using XGetImage or its SHM variation. However keep in mind this is slow and suboptimal. What's the fast

Re: [PATCH] Xext: un-export all XGE functions.

2008-12-08 Thread Peter Hutterer
On Mon, Dec 08, 2008 at 07:09:13PM -0200, Paulo César Pereira de Andrade wrote: These functions are only to be used by X server extensions, so let's not expose them to the world. This will not work as expected if the X Server is compiled with hidden symbols. For the moment at least,

[PATCHBOMB] randr 1.3: primary output infrastructure

2008-12-08 Thread Adam Jackson
Not compile-tested, merely syntactically plausible, just wanted to get this out for a second look. This implements the primary output requests in the DIX, and mangles the appropriate protocol requests to sort the primary output to the front. Patch #4 maps the primary output to the RANDR 1.0

Re: GLX in Xephyr --or-- is there some other way to catch a desktop in a texture?

2008-12-08 Thread Peter Harris
Ashi Krishnan wrote: On Mon, Dec 8, 2008 at 2:20 PM, Peter Harris [EMAIL PROTECTED] wrote: Ashi Krishnan wrote: This is fine if (1) the app creates only one window, and (2) is quite cooperative with respect to where it draws that window -- like, say, the xscreensaver hacks. Maybe I'm

Re: Trying to use Radeon driver on Apple eMac

2008-12-08 Thread Alex Deucher
On Mon, Dec 8, 2008 at 2:01 PM, Joseph Adams [EMAIL PROTECTED] wrote: I'm struggling to get the Radeon driver to work on my eMac G4's Radeon 7500 card (the fbdev driver works fine at 1024x768 with no acceleration). On both Fedora 8 and Fedora 10 with default xorg.conf, the screen is blank

Re: Slow exaOffscreenAlloc ?

2008-12-08 Thread Zdenek Kabelac
2008/12/9 Eric Anholt [EMAIL PROTECTED]: On Mon, 2008-12-08 at 12:32 +0100, Zdenek Kabelac wrote: Hi Recently I've noticed that scrolling in firefox is getting very very slow on some pages - especially those with some static background on the sides of pages. So I've started oprofile - and to

Re: [suggestion] mailing list for newbies

2008-12-08 Thread Corbin Simpson
Mikhail Gusarov wrote: Twas brillig at 15:50:35 08.12.2008 UTC+00 when [EMAIL PROTECTED] did gyre and gimble: CL Well certainly something (whether newbies or not) is preventing the CL 'devs' from seeing the wood through the trees. Lack of devs. Lack of dev time, as well. Out of

sdksyms.sh addition break build on sparc

2008-12-08 Thread David Miller
This change: commit b1dac41fb3853ca8182048ea57b88b6e84ecceb3 Author: Paulo Cesar Pereira de Andrade [EMAIL PROTECTED] Date: Sun Dec 7 02:22:19 2008 -0200 Use libtool convenience libraries and better symbol table. seems to break the build on sparc: sdksyms.c:1740: error:

Re: just how much autotools got faster, or: just forget about dolt

2008-12-08 Thread Dan Nicholson
On Sun, Nov 23, 2008 at 6:51 AM, Ralf Wildenhues [EMAIL PROTECTED] wrote: For all dolt junkies, and whoever claims autotools and esp. libtool are performance hogs: yes, they are still not the fastest thing in the world. But we are getting better: As an example, I built the ompi/ subdirectory

RE: Get raw data of Xrender Picture structure

2008-12-08 Thread McDonald, Michael-p7438c
-Original Message- From: Peter Harris [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2008 3:47 PM To: McDonald, Michael-p7438c Cc: xorg list Subject: Re: Get raw data of Xrender Picture structure McDonald, Michael-p7438c wrote: -Original Message- From: [EMAIL

Re: Get raw data of Xrender Picture structure

2008-12-08 Thread Peter Harris
McDonald, Michael-p7438c wrote: From: Peter Harris [mailto:[EMAIL PROTECTED] Don't read it back. Do your image manipulation entirely on the server side. Works as long as there is only one server side. Otherwise, slow and suboptimal seems to be your only choice. Fan out is another

Re: [PATCH] Xext: un-export all XGE functions.

2008-12-08 Thread Paulo César Pereira de Andrade
Peter Hutterer wrote: On Mon, Dec 08, 2008 at 07:09:13PM -0200, Paulo César Pereira de Andrade wrote: These functions are only to be used by X server extensions, so let's not expose them to the world. This will not work as expected if the X Server is compiled with hidden symbols.

RE: Get raw data of Xrender Picture structure

2008-12-08 Thread McDonald, Michael-p7438c
-Original Message- From: Peter Harris [mailto:[EMAIL PROTECTED] Sent: Monday, December 08, 2008 5:37 PM To: McDonald, Michael-p7438c Cc: xorg list Subject: Re: Get raw data of Xrender Picture structure Fan out is another possibility. Chromium does this for OpenGL; I'm sure

Re: [PATCH] Xext: un-export all XGE functions.

2008-12-08 Thread Daniel Stone
Hi, On Mon, Dec 08, 2008 at 10:44:52PM -0200, Paulo César Pereira de Andrade wrote: I will try to do as small as possible reorganization on the sdk headers, and add private and not installed headers. Please run these past the list first. Cheers, Daniel signature.asc Description: Digital

[RFC] Xorg symbols that should not be public

2008-12-08 Thread Paulo César Pereira de Andrade
Hi, In my Linux x86 computer, using only git master, and with X Server configured with --prefix=/usr --disable-builtin-fonts --enable-dri2 --enable-dri --enable-xephyr With all buildable modules also installed, attached is the list of symbols that are not used by any module. There are 2

Re: MPX window managers?

2008-12-08 Thread Sam Spilsbury
On Mon, Dec 8, 2008 at 4:58 AM, Colin Guthrie [EMAIL PROTECTED] wrote: 'Twas brillig, and Chris Ball at 07/12/08 18:18 did gyre and gimble: Hi Peter, mpwm is dead, and it's for the better. compiz has recently been picked up and improved: Thanks for the reply. This is

Re: [RFC] Xorg symbols that should not be public

2008-12-08 Thread Aaron Plattner
On Tue, Dec 09, 2008 at 12:36:01AM -0200, Paulo C?sar Pereira de Andrade wrote: Hi, In my Linux x86 computer, using only git master, and with X Server configured with --prefix=/usr --disable-builtin-fonts --enable-dri2 --enable-dri --enable-xephyr With all buildable modules also

Re: Get raw data of Xrender Picture structure

2008-12-08 Thread Gregoire Gentil
Thanks for all your answers. I appreciate. Unfortunately, so far, I didn't get anything working: - I was thinking of gdk_pixbuf_xlib_get_from_drawable but same story: If the specified drawable is a window, then it must be viewable, i.e. all of its ancestors up to the root window must be mapped.

Re: [RFC] Xorg symbols that should not be public

2008-12-08 Thread Paulo César Pereira de Andrade
Aaron Plattner wrote: I think some private headers, for things like libextmod, libxaa, libfb, etc, should be created, still with symbols exported at first, to guarantee binary compatibility. But some symbols that are currently exported should be made private, and not advertised in the sdk,

Fatal server error: could not open default font 'fixed'

2008-12-08 Thread Marcos Cunha
Hi Folks... I´ve been searching along the mailling lists a solution for this damn error... The server is the full 7.4 release of Xorg, compiled under a LFS/VMware. I tried to use mkfontdir and mkfontscale under .../fonts/misc but it still making a '0' file content =/ And also, symlinking with

Re: GLX in Xephyr --or-- is there some other way to catch a desktop in a texture?

2008-12-08 Thread Glynn Clements
Ashi Krishnan wrote: This is fine if (1) the app creates only one window, and (2) is quite cooperative with respect to where it draws that window -- like, say, the xscreensaver hacks. Maybe I'm dense, but I'm not seeing how that's a problem. Since you're acting as the window

KeyCode is Zero. Problem with irxevent and Xorg

2008-12-08 Thread Pavel Stoliarov
Hello. I cannot get working irxevent. ( http://www.lirc.org/html/irxevent.html ) The problem is that keycode is zero in debug log of irxevent My machine with linux (geexbox distr with X.Org 7.4) without keyboard, I manage it by remote control. Just for check I attached keyboard to machine, and

Re[2]: Signal 11 in xorg server

2008-12-08 Thread Руслан Бондарь
On Wed, 3 Dec Pat wrote: Backtrace: 0: /usr/bin/X(xf86SigHandler+0x7a) [0x80c8836] 1: [0xe400] 2: /usr/bin/X(Dispatch+0x33d) [0x808a67a] 3: /usr/bin/X(main+0x46f) [0x80719b5] 4: /lib/libc.so.6(__libc_start_main+0xe0) [0xb7c1f630] 5: /usr/bin/X [0x8070dd1] Can you run the X server under a

Re: sdksyms.sh addition break build on sparc

2008-12-08 Thread David Miller
From: Paulo César Pereira de Andrade [EMAIL PROTECTED] Date: Mon, 8 Dec 2008 22:17:27 -0200 (BRST) Thanks. I know about that special definition, but my mind did some trick on me when I wrote the awk code :-) Should be correct now. Yep, seems to work now, thanks.