Re: Issues with running Xclient using xwayland.

2013-01-23 Thread Pekka Paalanen
On Wed, 23 Jan 2013 11:51:54 -0800 Bill Spitzak wrote: > This sounds like the problem I had in that it is finding the xorg.conf > setup needed to run X normally. What in his X log suggests that it is getting a bad xorg.conf? I did not notice any such indication. Also modulepath seems to be cor

Re: Issues with running Xclient using xwayland.

2013-01-23 Thread ashjas
Thanks Bill for that info.. after searching for your patch i found this discussion of what you indicated.. but i couldnot find the patch that you mentioned.. http://lists.freedesktop.org/archives/wayland-devel/2012-September/005203.html can you give me some pointers? Thanks. On Thu, Jan 24, 201

Re: Issues with running Xclient using xwayland.

2013-01-23 Thread Bill Spitzak
This sounds like the problem I had in that it is finding the xorg.conf setup needed to run X normally. I posted a patch some time ago to make the xorg server use different filenames when running the wayland backend. I really can't see any other way to allow xwayland to run on the same machine

Re: [PATCH weston 2/7] pixman-renderer: Move shadow buffer into renderer

2013-01-23 Thread Bill Spitzak
Ander Conselvan de Oliveira wrote: If I understand correctly, pixman doesn't consider the transform of the destination image when compositing, so we also need a shadow buffer to support transformed outputs. I don't understand this. The caller of pixman can "consider the transform of the des

Re: [PATCH v3] fbdev: Add an fbdev compositor backend using pixman and evdev

2013-01-23 Thread David Herrmann
Hi Philip On Tue, Jan 22, 2013 at 9:59 PM, Philip Withnall wrote: > Here's the third version of the fbdev backend. This includes all the > fixes from the second version, plus a fix to use weston_launcher_open() > instead of open() for evdev devices, as pointed out by MoD. > > This patch is a squa

[PATCH wayland] gitignore: add test-suite files

2013-01-23 Thread David Herrmann
The *.log and *.trs files should be ignored by git as well as the GNU autotools ./test-driver helper script. Signed-off-by: David Herrmann --- .gitignore | 1 + tests/.gitignore | 7 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 4f7a934

[PATCH] event-loop: fix returning the destroy-signal listener

2013-01-23 Thread David Herrmann
We need to actually return the destroy-listener, otherwise the return value is undefined. Signed-off-by: David Herrmann --- src/event-loop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/event-loop.c b/src/event-loop.c index 25e8f9c..e556cc7 100644 --- a/src/event-loop.

Re: [PATCH wayland] Add a destroy signal to the wl_event_loop object.

2013-01-23 Thread David Herrmann
Hi Jason On Sat, Jan 12, 2013 at 4:01 AM, Jason Ekstrand wrote: > Add a destroy signal to the wl_event_loop object. > > --- > Again, this helps me prevent memory leaks. > > This time I used tabs ;-) > > src/event-loop.c| 21 ++ > src/wayland-server.h| 6 ++ > tes

Re: [PATCH weston 2/7] pixman-renderer: Move shadow buffer into renderer

2013-01-23 Thread David Herrmann
Hi Ander On Wed, Jan 23, 2013 at 11:34 AM, Ander Conselvan de Oliveira wrote: > On 01/23/2013 12:15 PM, Vasily Khoruzhick wrote: >> >> On Wed, Jan 23, 2013 at 12:02 PM, Ander Conselvan de Oliveira >> wrote: >>> >>> On 01/23/2013 09:25 AM, Vasily Khoruzhick wrote: On Tue, Jan 22, 2

Re: [PATCH weston 7/7] compositor-drm: Add support for using the pixman renderer

2013-01-23 Thread Armin K.
Hello, I'm not a programmer, but you might want to add --use-pixman in weston --help output. It currently displays this Options for drm-backend.so: --connector=IDBring up only this connector --seat=SEAT The seat that weston should run on --tty=TTY The tty

Re: [PATCH weston 6/7] compositor-drm: Support creating drm_fb backed by dumb buffers

2013-01-23 Thread Ander Conselvan de Oliveira
On 01/23/2013 11:50 AM, Pekka Paalanen wrote: On Tue, 22 Jan 2013 18:07:14 +0200 Ander Conselvan de Oliveira wrote: --- src/compositor-drm.c | 106 +- 1 file changed, 96 insertions(+), 10 deletions(-) diff --git a/src/compositor-drm.c b/src/

Re: [PATCH weston 2/7] pixman-renderer: Move shadow buffer into renderer

2013-01-23 Thread Ander Conselvan de Oliveira
On 01/23/2013 12:15 PM, Vasily Khoruzhick wrote: On Wed, Jan 23, 2013 at 12:02 PM, Ander Conselvan de Oliveira wrote: On 01/23/2013 09:25 AM, Vasily Khoruzhick wrote: On Tue, Jan 22, 2013 at 7:07 PM, Ander Conselvan de Oliveira wrote: The X11 backend uses a shadow buffer to be able to supp

Re: [PATCH weston 2/7] pixman-renderer: Move shadow buffer into renderer

2013-01-23 Thread Vasily Khoruzhick
On Wed, Jan 23, 2013 at 12:02 PM, Ander Conselvan de Oliveira wrote: > On 01/23/2013 09:25 AM, Vasily Khoruzhick wrote: >> >> On Tue, Jan 22, 2013 at 7:07 PM, Ander Conselvan de Oliveira >> wrote: >>> >>> The X11 backend uses a shadow buffer to be able to support transformed >>> outputs. However,

Re: [PATCH weston 6/7] compositor-drm: Support creating drm_fb backed by dumb buffers

2013-01-23 Thread Pekka Paalanen
On Tue, 22 Jan 2013 18:07:14 +0200 Ander Conselvan de Oliveira wrote: > --- > src/compositor-drm.c | 106 > +- > 1 file changed, 96 insertions(+), 10 deletions(-) > > diff --git a/src/compositor-drm.c b/src/compositor-drm.c > index 4868db0..7c11

Re: [PATCH weston 4/7] compositor-drm: Delay egl initialization until all outputs are created

2013-01-23 Thread Ander Conselvan de Oliveira
On 01/22/2013 06:52 PM, John Kåre Alsaker wrote: What's the reason for this change and where is EGL initialized for outputs created on the fly? Right, that is missing. This patch is not actually necessary. I already had part of the rework needed for the pixman renderer done for another reason

Re: [PATCH weston 2/7] pixman-renderer: Move shadow buffer into renderer

2013-01-23 Thread Ander Conselvan de Oliveira
On 01/23/2013 09:25 AM, Vasily Khoruzhick wrote: On Tue, Jan 22, 2013 at 7:07 PM, Ander Conselvan de Oliveira wrote: The X11 backend uses a shadow buffer to be able to support transformed outputs. However, this belongs in the renderer, since otherwise this code would have to be copied into ever

Re: [PATCH v3] fbdev: Add an fbdev compositor backend using pixman and evdev

2013-01-23 Thread Pekka Paalanen
Hi Philip, I still didn't test this, but it looks good. I have some minor comments inline below. On Tue, 22 Jan 2013 20:59:44 + Philip Withnall wrote: > Here's the third version of the fbdev backend. This includes all the > fixes from the second version, plus a fix to use weston_launcher_o