[E-devel] Re: E CVS: proto moom

2006-05-21 Thread [EMAIL PROTECTED]
just for information, here is the page of Michael Niedermayer (ffmpeg lead dev) about optimization : http://guru.multimedia.cx/category/optimization/ maybe it can help Vincent Could be a useful reference to have around.. especially for those, like me, who often get their

Re: [E-devel] Re: E CVS: proto moom

2006-05-21 Thread Alexander Taylor
ffmpeg - not cosmic? I suggest you take another glance - one of the most important projects in the OSS world, for a variety of reasons. Alex. On Sun, 2006-05-21 at 09:10 +, [EMAIL PROTECTED] wrote: just for information, here is the page of Michael Niedermayer (ffmpeg lead dev) about

Re: [E-devel] Re: E CVS: proto moom

2006-05-21 Thread Vincent Torri
another link that can be usefull : http://www.agner.org/assem/ Jose: you can also have a look at SoftWire, in order to speed up asm code. Vincent On Sun, 21 May 2006, Alexander Taylor wrote: ffmpeg - not cosmic? I suggest you take another glance - one of the most important projects in the

[E-devel] New in the town

2006-05-21 Thread Sebastià Serra Landete
Hi all, Im new in the town, two weeks ago while was doing web-surfing looking for something new I found Enlightenment 17, I like web design, especially well designed pages with CSS and some Flash, Im a Cobol programmer, yes I know it, COBOL is probably one of the oldest programming

[E-devel] Re: Entropy layout

2006-05-21 Thread Thomas Jeunet
Thank you for the CVS commmit, it helped finding the problem : /-- (...) Loading '/usr/share/entropy/plugins//etk_structure_viewer.so'... Loading '/usr/share/entropy/plugins//etk_iconbox.so'... Could not open plugin object /usr/share/entropy/plugins//etk_iconbox.so - Corrupt file? abort Loading

Re: [E-devel] New in the town

2006-05-21 Thread Aleksej Struk
Hey, Well, here [1] is two books on c/c++. It is good start I guess. And then I'd suggest just to take already written apps and investigate them. I personaly did in this way. I hope that I understood your question correctly. Otherwise if u want to learn E api - then just go inside source tree

Re: [E-devel] New in the town

2006-05-21 Thread Arnaldo de Moraes Pereira
Or, if you want EFL documentation, the starting point would be: http://www.enlightenment.org/Libraries/Documentation/ On 5/21/06, Aleksej Struk [EMAIL PROTECTED] wrote: Hey, Well, here [1] is two books on c/c++. It is good start I guess. And then I'd suggest just to take already written apps

[E-devel] New in the town

2006-05-21 Thread Zarius
Hi all, Im new in the town, two weeks ago while was doing web-surfing looking for something new I found Enlightenment 17, I like web design, especially well designed pages with CSS and some Flash, Im a Cobol programmer, yes I know it, COBOL is probably one of the oldest programming

Re: [E-devel] Ecore does not compile.

2006-05-21 Thread Anders Troback
I still can't compile Ecore on FreeBSD:-( 8-- so ../../src/lib/ecore_job/.libs/libecore_job.so ../../src/lib/ecore_evas/.libs/libecore_evas.so /usr/devel/enlightenment/e17/libs/ecore/src/lib/ecore_x/.libs/libecore_x.so

[E-devel] Evas Gradients

2006-05-21 Thread d . stonier
Having a few troubles with evas gradients. The window that gets set up doesn't seem to repair a gradient properly when another window is passed over the gradient. Ive got a quick example adapted from the efl cookbook below. Have I missed something or is it a problem in evas? Cheers, Daniel.

[E-devel] Valgrind support in Evas

2006-05-21 Thread Tilman Sauerbeck
Hi, some time ago, Valgrind support was disabled in Evas. IIRC it was because we applied the linker flags from pkg-config --libs valgrind, which broke the build. I attached a patch that enables Valgrind support again, but doesn't apply the libs (they are only needed when you're developing

[E-devel] evas_object_bottom_get

2006-05-21 Thread d . stonier
Sorry for a second query so quickly. I also have some old code that used to work with evas, but does no longer. ** Evas *evas; Evas_Object *o; while (( o = evas_object_bottom_get(evas) )) { evas_object_del(o); }

[E-devel] Edje: Image transitions

2006-05-21 Thread Sevcsik András
Hi everyone. How can I add image transitions to my edc? Heres my programs{} section: programs { program { name, statusimg_in; signal, mouse,in; source, statusimg_bg; action,

[E-devel] Re: E CVS: screenshot devilhorns

2006-05-21 Thread Brian Mattern
On Sunday 21 May 2006 07:06, Enlightenment CVS wrote: Enlightenment CVS committal Author : devilhorns Project : e_modules Module : screenshot Dir : e_modules/screenshot Modified Files: e_mod_main.c Log Message: Changed message to tell the user to either install import or

Re: [E-devel] Edje: Image transitions

2006-05-21 Thread Aleksej Struk
I guess, that u have to define all wanted alpha states of your image. And then just step between them as u want. Maybe I'm wrong. I'm not edje specialist. :( Hope, my answer will help On Sun, May 21, 2006 at 10:33:39PM +0200, Sevcsik Andr??s wrote: // Hi everyone. // // How can I add image

Re: [E-devel] Re: Entropy layout

2006-05-21 Thread Alexander Taylor
Hmm, This is most odd - the 'entropy_event_action_file' should be resolved as part of the dlopen process - it belongs to the linked component doing the 'dlopen'/'dlsym' calls. What environment are you compiling/running under? The code as-is seems to work in all cases i've seen so far - and

Re: [E-devel] Edje: Image transitions

2006-05-21 Thread The Rasterman
On Sun, 21 May 2006 22:33:39 +0200 Sevcsik András [EMAIL PROTECTED] babbled: Hi everyone. How can I add image transitions to my edc? you need 2 images and fade the one on top in/out. evas doesn't do crossfade - and thus edje doesn't either. Heres my programs{} section: programs {

[E-devel] broken depends in eutils

2006-05-21 Thread Vlad Alyukov
Index: apps/e_utils/debian/control === RCS file: /var/cvs/e/e17/apps/e_utils/debian/control,v retrieving revision 1.6 diff -u -3 -r1.6 control --- apps/e_utils/debian/control 24 Apr 2006 09:39:44 - 1.6 +++

Re: [E-devel] Evas Gradients

2006-05-21 Thread [EMAIL PROTECTED]
Having a few troubles with evas gradients. The window that gets set up doesn't seem to repair a gradient properly when another window is passed over the gradient. Ive got a quick example adapted from the efl cookbook below. Have I missed something or is it a problem in evas? Cheers,