jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=fb4f81b119ee8ec085630e4ab018a9022d4ca448
commit fb4f81b119ee8ec085630e4ab018a9022d4ca448 Author: Jean-Philippe Andre <[email protected]> Date: Wed Nov 18 12:06:00 2015 +0900 Edje data: Remove redondant array in Evas 3D edd Since I just broke EDJ ABI, as well clean it up. The same array was saved twice under two different names. --- src/lib/edje/edje_data.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/edje/edje_data.c b/src/lib/edje/edje_data.c index 218a416..8406878 100644 --- a/src/lib/edje/edje_data.c +++ b/src/lib/edje/edje_data.c @@ -853,8 +853,7 @@ _edje_edd_init(void) #define EET_DATA_DESCRIPTOR_ADD_SUB_NESTED_LOOK(Edd, Type, Dec) \ { \ - EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY(Edd, Type, #Dec ".orientation.look1", Dec.orientation.data, EDJE_T_FLOAT); \ - EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY(Edd, Type, #Dec ".orientation.look2", Dec.orientation.data, EDJE_T_FLOAT); \ + EET_DATA_DESCRIPTOR_ADD_BASIC_ARRAY(Edd, Type, #Dec ".orientation.look", Dec.orientation.data, EDJE_T_FLOAT); \ EET_DATA_DESCRIPTOR_ADD_BASIC(Edd, Type, #Dec ".orientation.look_to", Dec.orientation.look_to, EET_T_INT); \ } --
