Re: [E-devel] Eina_Clist - Request for clarifications

2011-10-18 Thread Cedric BAIL
Dear you ! On Mon, Oct 17, 2011 at 2:32 PM, Tom Hacohen tom.haco...@partner.samsung.com wrote: Dear all, I took a quick look at Eina_Clist today, and it looks fairly similar to Eina_Inlist. What are the differences? Eina_Clist is a circular inlist. It avoid the use of a pointer to jump to

Re: [E-devel] Eina_Clist - Request for clarifications

2011-10-18 Thread Tom Hacohen
On 18/10/11 07:44, Carsten Haitzler (The Rasterman) wrote: its a silghtly more efficient inlist with slightly different behavioral properties. eg u can remove the item from its clist without needing the clist header item at all. Sounds nice, but does this really justify a new data type? Are

Re: [E-devel] [E-Devel][Review][Patch] Evas GL Extensions + a bug fix

2011-10-18 Thread The Rasterman
On Mon, 17 Oct 2011 17:25:17 +0900 Sung W. Park sung...@gmail.com said: - IN - :) Hi Carsten, Nice!! My patch has seen the light finally =) I'll respond to the comments below. On Mon, Oct 17, 2011 at 3:16 PM, Carsten Haitzler ras...@rasterman.com wrote: On Thu, 13 Oct 2011

Re: [E-devel] Eina_Clist - Request for clarifications

2011-10-18 Thread The Rasterman
On Tue, 18 Oct 2011 09:38:10 +0200 Tom Hacohen tom.haco...@partner.samsung.com said: On 18/10/11 07:44, Carsten Haitzler (The Rasterman) wrote: its a silghtly more efficient inlist with slightly different behavioral properties. eg u can remove the item from its clist without needing the

[E-devel] [Patch] modify gl engine's animated function related with cache entry

2011-10-18 Thread Jiyoun Park
Hello. I modify gl engines code related with animated image. This is very trivial. Evas image object pass image to engine. In software engine, it is cache entry , but in GL engine, it is Evas_GL Image. So modify gl engine code get cache entry from gl image. Thanks.  

Re: [E-devel] Eina_Clist - Request for clarifications

2011-10-18 Thread Cedric BAIL
On Tue, Oct 18, 2011 at 10:43 AM, Tom Hacohen tom.haco...@partner.samsung.com wrote: On 18/10/11 10:37, Carsten Haitzler (The Rasterman) wrote: you don't have to use it... :) That's hardly a valid point. :) Using the same logic, I might as well add a flight simulator to eina. I only ask

[E-devel] [PATCH 1/5] eve: update to new webkit-efl api, ewk_frame_zoom_get is now ewk_frame_page_zoom_get

2011-10-18 Thread Martin Jansa
* see http://svn.webkit.org/repository/webkit/trunk@97043 268f45cc-cd09-0410-ab3c-d52691b4dbfc for details Signed-off-by: Martin Jansa martin.ja...@gmail.com --- eve/src/bin/view.c | 12 ++-- 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/eve/src/bin/view.c

[E-devel] [PATCH 3/5] eve: adapt to elm_object_focus API change from r62049

2011-10-18 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- eve/src/bin/chrome.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/eve/src/bin/chrome.c b/eve/src/bin/chrome.c index 3d6d36f..8b817b3 100644 --- a/eve/src/bin/chrome.c +++ b/eve/src/bin/chrome.c @@ -861,7 +861,7 @@

[E-devel] [PATCH 2/5] eve: update to new webkit-efl api, ewk_view_zoom_text_only_set is gone

2011-10-18 Thread Martin Jansa
* we can set different text zoom now with ewk_view_text_zoom_set * see http://svn.webkit.org/repository/webkit/trunk@97043 268f45cc-cd09-0410-ab3c-d52691b4dbfc for details Signed-off-by: Martin Jansa martin.ja...@gmail.com --- eve/src/bin/chrome.c| 25 ++---

[E-devel] [PATCH 5/5] eve: adapt to elm_scrolled_entry/elm_entry API changes from r60438

2011-10-18 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- eve/src/bin/chrome.c | 20 ++-- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/eve/src/bin/chrome.c b/eve/src/bin/chrome.c index 4db1498..16e2701 100644 --- a/eve/src/bin/chrome.c +++ b/eve/src/bin/chrome.c

[E-devel] [PATCH 4/5] eve: adapt to elm_object_text API changes from r60798 and r60797

2011-10-18 Thread Martin Jansa
Signed-off-by: Martin Jansa martin.ja...@gmail.com --- eve/src/bin/chrome.c |8 eve/src/bin/view.c |8 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/eve/src/bin/chrome.c b/eve/src/bin/chrome.c index 8b817b3..4db1498 100644 --- a/eve/src/bin/chrome.c

Re: [E-devel] [PATCH 1/5] eve: update to new webkit-efl api, ewk_frame_zoom_get is now ewk_frame_page_zoom_get

2011-10-18 Thread Rafael Antognolli
Patches applied, thank you! On Tue, Oct 18, 2011 at 10:04 AM, Rafael Antognolli antogno...@profusion.mobi wrote: Hello Martin, Could you also send these patches attached in the email? On Tue, Oct 18, 2011 at 9:56 AM, Martin Jansa martin.ja...@gmail.com wrote: * see

Re: [E-devel] Eina_Clist - Request for clarifications

2011-10-18 Thread Leandro Pereira
On 10/18/2011 06:43 AM, Tom Hacohen wrote: Using the same logic, I might as well add a flight simulator to eina. If someone's inclined to add a flight simulator to Eina, I'd suggest basing it on the the famous, award-winning, three-dimensional, self-documenting flight simulator by Carl Banks:

Re: [E-devel] Eina_Clist - Request for clarifications

2011-10-18 Thread Tom Hacohen
On 18/10/11 17:00, Leandro Pereira wrote: On 10/18/2011 06:43 AM, Tom Hacohen wrote: Using the same logic, I might as well add a flight simulator to eina. If someone's inclined to add a flight simulator to Eina, I'd suggest basing it on the the famous, award-winning, three-dimensional,

Re: [E-devel] E SVN: discomfitor trunk/PROTO/azy

2011-10-18 Thread Vincent Torri
On Tue, 18 Oct 2011, Enlightenment SVN wrote: Log: fix pc file to use private stuff Author: discomfitor Date: 2011-10-18 19:12:54 -0700 (Tue, 18 Oct 2011) New Revision: 64157 Trac: http://trac.enlightenment.org/e/changeset/64157 Modified: