Hi,


When I make the function call 
'evas_render_method_lookup("software_x11")' the library returns an 
invalid id (= 0). I used the following code to print a list of the 
available render methods:



     Eina_List *engine_list, *l;

     char *engine_name;

  

     engine_list = evas_render_method_list();

     if (!engine_list)

       {

         cerr << "ERROR: Evas supports no engines! Exit" << endl;

         exit(-1);

       }

     cout << "Availible Evas Engines:" << endl;

  

     l = engine_list;

     void* data = eina_list_data_get(l);

  

     while(l) {

        cout << (char*) data << endl;

        l = eina_list_next(l);

        data = eina_list_data_get(l);

     }

  

     evas_render_method_list_free(engine_list);



and this was the output:



    Availible Evas Engines:

    software_x11

    xrender_x11

    gl_x11

    fb

    buffer



Although 'software_x11' is mentioned in the list, I'm not able to lookup this 
method. 



Any idea's?

Regards!



                                          
------------------------------------------------------------------------------
The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE:
Pinpoint memory and threading errors before they happen.
Find and fix more than 250 security defects in the development cycle.
Locate bottlenecks in serial and parallel code that limit performance.
http://p.sf.net/sfu/intel-dev2devfeb
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to