Re: [PATCH wayland] Don't skip the first directory entry when reading cursors.

2012-07-26 Thread Kristian Høgsberg
On Thu, Jul 26, 2012 at 01:39:48AM -0700, Dima Ryazanov wrote: > I end up missing the "bottom_right_corner" cursor. Yikes, good find. Applied. Kristian > --- > cursor/xcursor.c |1 - > 1 file changed, 1 deletion(-) > > diff --git a/cursor/xcursor.c b/cursor/xcursor.c > index 0fe0440..f082

Re: [PATCH 3/3] gears: add a warning about refresh rate limitation

2012-07-26 Thread Kristian Høgsberg
On Thu, Jul 26, 2012 at 06:55:53PM +0200, Olivier Blin wrote: Applied this and the fps patch. Kristian > --- > clients/gears.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/clients/gears.c b/clients/gears.c > index 19165e7..aee0357 100644 > --- a/clients/gears.c > +++ b/clients/gear

Re: [PATCH 3/3] gears: add a warning about refresh rate limitation

2012-07-26 Thread Scott Moreau
> > Ok, that seems sufficient, thanks. > > For a bonus, could you still explain what this FPS count actually > measures? > > Something like this: it measures how often a very simple GL program > can show new content. This is limited by the monitors' refresh > rates, system load, compositor performa

Re: [PATCH 3/3] gears: add a warning about refresh rate limitation

2012-07-26 Thread Pekka Paalanen
On Thu, 26 Jul 2012 18:55:53 +0200 Olivier Blin wrote: > --- > clients/gears.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/clients/gears.c b/clients/gears.c > index 19165e7..aee0357 100644 > --- a/clients/gears.c > +++ b/clients/gears.c > @@ -435,6 +435,7 @@ gears_create(struct dis

Re: shells (Re: [PATCH weston 4/5] Make use of new wl_cursors)

2012-07-26 Thread Pekka Paalanen
On Thu, 26 Jul 2012 12:37:01 -0700 Bill Spitzak wrote: > >> What is the meaning of more than one shell? Or is there another reason > >> for the shell argument? > > > > A shell does window management... > > I think my question was misunderstood. What I meant was "What is the > meaning of more

bug fix inactive encoder when weston restart

2012-07-26 Thread Wang, Quanxian
Hi, All Please help review the patch. Thanks Background: If we use 'pkill -9 weston', when restart weston, weston could not get the active encoder attached on connector and exit abnormally. This is because when weston is pkilled, drm cleanups the encoders attached to active connector in KMS. T

mode issue about no EDID and first mode when weston start

2012-07-26 Thread Wang, Quanxian
Hi, All Help review. Background 1) Some platforms has no EDID mode information. Therefore when KMS initializes the driver, there will be no mode provided for user. At that time, have to use the fixed mode defined by the user.(builtin-800x480) 2) In the very beginning of weston restart

Re: shells (Re: [PATCH weston 4/5] Make use of new wl_cursors)

2012-07-26 Thread Bill Spitzak
Pekka Paalanen wrote: What is the meaning of more than one shell? Or is there another reason for the shell argument? A shell does window management... I think my question was misunderstood. What I meant was "What is the meaning of more than one shell SIMULTANEOUSLY". If a wayland instan

[PATCH 3/3] gears: add a warning about refresh rate limitation

2012-07-26 Thread Olivier Blin
--- clients/gears.c | 1 + 1 file changed, 1 insertion(+) diff --git a/clients/gears.c b/clients/gears.c index 19165e7..aee0357 100644 --- a/clients/gears.c +++ b/clients/gears.c @@ -435,6 +435,7 @@ gears_create(struct display *display) gettimeofday(&tv, NULL); gears->last_fps =

shells (Re: [PATCH weston 4/5] Make use of new wl_cursors)

2012-07-26 Thread Pekka Paalanen
On Wed, 25 Jul 2012 14:37:47 -0700 Bill Spitzak wrote: > Kristian Høgsberg wrote: > > > We added wl_shell_surface, because we had a lot > > of requests on wl_shell that went like: wl_shell.set_fullscreen(shell, > > surface), ie, took the shell and a surface, and in effect were surface > > reques

Re: [PATCH 1/2] ecore_wayland: Add Copy and Paste support

2012-07-26 Thread Alex Wu
于 2012/7/26 18:41, Daniel Stone 写道: Hi, On 26 July 2012 11:18, wrote: Add a global Ecore_Wl_Dnd object to handle copy and paste. I think it is more appropriate to name this struct Ecore_Wl_Selection, which is responsible for both dnd and cnp. This patch just cover the copy and paste and not su

Re: [PATCH 1/2] ecore_wayland: Add Copy and Paste support

2012-07-26 Thread Daniel Stone
Hi, On 26 July 2012 11:18, wrote: > Add a global Ecore_Wl_Dnd object to handle copy and paste. I think > it is more appropriate to name this struct Ecore_Wl_Selection, which > is responsible for both dnd and cnp. This patch just cover the copy > and paste and not support "clear clipboard", due t

RE: [E-devel] [PATCH 0/2] This patch set add Copy and Paste support for wayland backend.

2012-07-26 Thread Chris Michael
Thanks for the patches :) I will try to make time to review them this week. Much appreciated :) Cheers, Dh -Original Message- From: zhiwen...@linux.intel.com [mailto:zhiwen...@linux.intel.com] Sent: 26 July 2012 10:18 To: enlightenment-de...@lists.sourceforge.net Cc: eduardo.de.barros.

[PATCH 2/2] elem_cnp: Add Copy and Paste support for wayland.

2012-07-26 Thread zhiwen . wu
From: Alex Wu Just support type of ELM_SEL_TYPE_CLIPBOARD. If not define HAVE_ELEMENTARY_X, the wayland path will be built. --- trunk/elementary/src/lib/elm_cnp.c | 119 +++- 1 file changed, 117 insertions(+), 2 deletions(-) diff --git a/trunk/elementary/src/lib

[PATCH 1/2] ecore_wayland: Add Copy and Paste support

2012-07-26 Thread zhiwen . wu
From: Alex Wu Add a global Ecore_Wl_Dnd object to handle copy and paste. I think it is more appropriate to name this struct Ecore_Wl_Selection, which is responsible for both dnd and cnp. This patch just cover the copy and paste and not support "clear clipboard", due to wayland has no way to do th

[PATCH 0/2] This patch set add Copy and Paste support for wayland backend.

2012-07-26 Thread zhiwen . wu
Ecore_Wayland: Test for a valid surface before we try to process the pointer_enter event. (2012-07-26 07:23:32 +) Alex Wu (2): ecore_wayland: Add Copy and Paste support elem_cnp: Add Copy and Paste support for wayl

[PATCH wayland] Don't skip the first directory entry when reading cursors.

2012-07-26 Thread Dima Ryazanov
I end up missing the "bottom_right_corner" cursor. --- cursor/xcursor.c |1 - 1 file changed, 1 deletion(-) diff --git a/cursor/xcursor.c b/cursor/xcursor.c index 0fe0440..f08225c 100644 --- a/cursor/xcursor.c +++ b/cursor/xcursor.c @@ -870,7 +870,6 @@ load_all_cursors_from_dir(const char *pa