cedric pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=bb47730b6d0baf62de5e105bf0406adacee36f07
commit bb47730b6d0baf62de5e105bf0406adacee36f07 Author: Cedric Bail <[email protected]> Date: Thu May 1 11:02:30 2014 +0200 evas: make evas_3d_node_add visible to others. --- src/lib/evas/Evas_Eo.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/lib/evas/Evas_Eo.h b/src/lib/evas/Evas_Eo.h index 382b0ef..6704ff8 100644 --- a/src/lib/evas/Evas_Eo.h +++ b/src/lib/evas/Evas_Eo.h @@ -2,6 +2,8 @@ # error You shall not include this header directly #endif +#include <Eo.h> + EAPI extern const Eo_Event_Description _EVAS_OBJECT_EVENT_MOUSE_IN; EAPI extern const Eo_Event_Description _EVAS_OBJECT_EVENT_MOUSE_OUT; EAPI extern const Eo_Event_Description _EVAS_OBJECT_EVENT_MOUSE_DOWN; @@ -220,6 +222,9 @@ EAPI extern const Eo_Event_Description _EVAS_CANVAS_EVENT_RENDER_POST; #include "canvas/evas_3d_mesh.eo.h" +// Manually added at it is not generated by Eolian and not a legacy function either. +EAPI Evas_3D_Node *evas_3d_node_add(Evas *e, Evas_3D_Node_Type type); + #include "canvas/evas_3d_node.eo.h" #include "canvas/evas_3d_scene.eo.h" --
