Re: [PATCH 3/3] Make EGL/GLESv2 dependencies optional

2013-01-11 Thread Vasily Khoruzhick
On Fri, Jan 11, 2013 at 11:19 AM, David Herrmann dh.herrm...@googlemail.com wrote: Hi On Fri, Jan 11, 2013 at 7:44 AM, Vasily Khoruzhick anars...@gmail.com wrote: On Fri, Jan 11, 2013 at 1:33 AM, David Herrmann dh.herrm...@googlemail.com wrote: Hi On Wed, Jan 9, 2013 at 10:44 AM, Vasily

Re: [RFC] Sub-surface protocol and implementation v1

2013-01-11 Thread Pekka Paalanen
On Thu, 10 Jan 2013 21:54:50 +0100 John Kåre Alsaker john.kare.alsa...@gmail.com wrote: On Thu, Jan 10, 2013 at 9:49 AM, Pekka Paalanen ppaala...@gmail.com wrote: However, the dummy surface as the root surface (i.e. the window main surface) will not work, because it is the surface the shell

Re: [PATCH 3/3] Make EGL/GLESv2 dependencies optional

2013-01-11 Thread David Herrmann
Hi Vasily On Fri, Jan 11, 2013 at 9:50 AM, Vasily Khoruzhick anars...@gmail.com wrote: On Fri, Jan 11, 2013 at 11:19 AM, David Herrmann dh.herrm...@googlemail.com wrote: Hi On Fri, Jan 11, 2013 at 7:44 AM, Vasily Khoruzhick anars...@gmail.com wrote: On Fri, Jan 11, 2013 at 1:33 AM, David

Re: Mplayer build guide

2013-01-11 Thread ashjas
Hello.. I was trying to test this build.. but i am getting errors upon executing the mplayer. Seems it is asking for opengl3 support.. i tried to look at the configure options in wayland to enable the opengl 3 support.. but didnt find any.. any clues? Thanks.

[PATCH] gl-renderer: make EGL typedefs similar to EGL/egl.h when building without EGL support

2013-01-11 Thread Vasily Khoruzhick
Signed-off-by: Vasily Khoruzhick anars...@gmail.com --- src/gl-renderer.h | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/gl-renderer.h b/src/gl-renderer.h index 81735e6..a2e8690 100644 --- a/src/gl-renderer.h +++ b/src/gl-renderer.h @@ -53,10 +53,10 @@

Re: Mplayer build guide

2013-01-11 Thread Tiago Vignatti
On 01/11/2013 08:24 AM, ashjas wrote: Hello.. I was trying to test this build.. but i am getting errors upon executing the mplayer. Seems it is asking for opengl3 support.. i tried to look at the configure options in wayland to enable the opengl 3 support.. but didnt find any.. any clues?

Re: Mplayer build guide

2013-01-11 Thread Scott Moreau
On Fri, Jan 11, 2013 at 6:16 AM, Tiago Vignatti tiago.vigna...@linux.intel.com wrote: On 01/11/2013 08:24 AM, ashjas wrote: Hello.. I was trying to test this build.. but i am getting errors upon executing the mplayer. Seems it is asking for opengl3 support.. i tried to look at the

[PATCH wayland] Added a destroy signal to the wl_display object

2013-01-11 Thread Jason Ekstrand
Added a destroy signal to the wl_display object. Signed-off by: Jason Ekstrand ja...@jlekstrand.net --- This makes it easier to avoid memory leaks when writing wrappers around wl_global objects. This shouldn't break ABI, so it would be nice if it could make it into 1.0.4. src/wayland-server.c |

Re: [PATCH wayland] Added a destroy signal to the wl_display object

2013-01-11 Thread Kristian Høgsberg
On Fri, Jan 11, 2013 at 12:33:20PM -0600, Jason Ekstrand wrote: Added a destroy signal to the wl_display object. Signed-off by: Jason Ekstrand ja...@jlekstrand.net --- This makes it easier to avoid memory leaks when writing wrappers around wl_global objects. This shouldn't break ABI, so it

Re: [PATCH wayland] Added a destroy signal to the wl_display object

2013-01-11 Thread Kristian Høgsberg
On Fri, Jan 11, 2013 at 02:29:59PM -0500, Kristian Høgsberg wrote: On Fri, Jan 11, 2013 at 12:33:20PM -0600, Jason Ekstrand wrote: Added a destroy signal to the wl_display object. Signed-off by: Jason Ekstrand ja...@jlekstrand.net --- This makes it easier to avoid memory leaks when

[PATCH] Added a destroy signal to the wl_display object.

2013-01-11 Thread Jason Ekstrand
Added a destroy signal to the wl_display object. --- src/wayland-server.c | 20 + src/wayland-server.h | 5 tests/Makefile.am| 2 ++ tests/display-test.c | 79 4 files changed, 106 insertions(+) create mode 100644

Re: [PATCH] Added a destroy signal to the wl_display object.

2013-01-11 Thread Kristian Høgsberg
On Fri, Jan 11, 2013 at 02:29:32PM -0600, Jason Ekstrand wrote: Added a destroy signal to the wl_display object. Thanks, committed with edits to use TAB indents and fix the space between '*' and arugment in the header file too. Nice test case. Kristian --- src/wayland-server.c | 20

Re: [RFC] Sub-surface protocol and implementation v1

2013-01-11 Thread Bill Spitzak
My understanding is the reason for the dummy surface is to control what surfaces are committed. If the rule is that commit commits all child surfaces, and you want a window with both synchronous and async child surfaces, you would instead make a dummy surface, and make the real surface and all

Mplayer build guide fixes, and gstreamer guide

2013-01-11 Thread nerdopolis
Hi. As for compiling mplayer for Wayland, what mplayer does when it compiles is optimizes itself for the current CPU, which is great if you are running mplayer on one computer, however, for compiling mplayer for a distribution, or for compiling it on a system that is on a USB drive for

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

2013-01-11 Thread Jason Ekstrand
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 ++ tests/event-loop-test.c | 57 + 3

Re: Mplayer build guide

2013-01-11 Thread ashjas
Thanks to all.. that worked!. now there is a good wayland client to have a look upon! wayland is getting interesting! On Fri, Jan 11, 2013 at 6:06 PM, Alexander Preisinger alexander.preisin...@gmail.com wrote: 2013/1/11 ashjas ash...@gmail.com Hello alexander, I havent specified any