Am Fri, 1 Mar 2013 21:25:28 +0100 schrieb Andreas Volz:

> Am Fri, 1 Mar 2013 09:45:22 -0300 schrieb Rafael Antognolli:
> 
> > Try to get more log output with: EINA_LOG_LEVELS="eina_module:5" (I
> > actually don't remember the number, but 5 is big enough).
> 
> I just uploaded complete logging here:
> 
> http://www.pasteall.org/40137
> 
> To summarize what I do is:
> 
>    ecore_evas_init();
>    edje_init();
>    ecore_evas_software_android_new();
> 
> and
> 
> EAPI Ecore_Evas *
> ecore_evas_software_android_new(void *android_bitmap_info, int w, int
> h) {
>    Ecore_Evas *(*new)(void*, int, int);
>     
>   DBG("+engine (av): ANDROID"); 
>    Eina_Module *m = _ecore_evas_engine_load("android");
>   DBG("-engine (av): ANDROID");
>    
>    EINA_SAFETY_ON_NULL_RETURN_VAL(m, NULL);
>    
>    new = eina_module_symbol_get(m,
> "ecore_evas_software_android_new_internal");
> EINA_SAFETY_ON_NULL_RETURN_VAL(new, NULL); 
>    return new(android_bitmap_info, w, h);
> }
> 
> and as I said traces in _ecore_evas_engine_load doesn't even print
> out "android" string. This is somehow strange...

It was just eina_log_print_cb_set() which did a wrong va_arg handling
and so all debug prints were broken. I was nearly about to went
crazy. Now everything looks nice. Sometimes if it looks really strange
one has to verify the debug function itself :-)

-- 
Technical Blog <http://andreasvolz.wordpress.com/>

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to