summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* evas/evas3d: clean up camera code.devs/cedric/evas-3dChunEon Park2014-04-161-33/+35
| | | | rewrite for more efl style.
* evas/evas3d: keep the code style.ChunEon Park2014-04-161-37/+31
|
* evas/evas3d: just cleanup image code.ChunEon Park2014-04-161-51/+53
| | | | changed to clean efl style.
* evas/evas3d - ahh don't put the slash at the end of the paragraph.ChunEon Park2014-04-161-1/+1
|
* Merge branch 'master' into devs/cedric/evas-3dChunEon Park2014-04-1615-39/+247
|\ | | | | | | | | Conflicts: src/lib/evas/Evas_Eo.h
| * docs now have a slightly more english description and list libs alphabeticallyMike Blumenkrantz2014-04-141-14/+14
| |
| * Fixed a problem with e wl server that sent invalid key value to wl client.Gwanglim Lee2014-04-149-11/+167
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: This problem occurred due to xkb_keysym_t value of libxkbcommon by e wl server. e wl server should pass keycode from evdev input device on to wl client. In order that e wl server receives valid keycode Ecore_Event_Key should have an extended data member. This patch should be applied with server side patch. @fix Test Plan: run e wl server -> create wl client -> type keys Reviewers: raster, devilhorns, zmike CC: cedric Differential Revision: https://phab.enlightenment.org/D712
| * Eolian: add support for cmakeDaniel Zaoui2014-04-143-0/+39
| | | | | | | | Now with the file :-)
| * build: Temporary disable debug log output during coverageStefan Schmidt2014-04-141-1/+2
| | | | | | | | | | | | | | Due to the amount of generated debug messages from eolion generation we end up with 3.8GB log files for elm builds when efl was build with coverage enabled. Temporary disable this until eolion is fixed and we can turn it on again.
| * Revert "Eolian: add support for cmake"Tom Hacohen2014-04-142-7/+0
| | | | | | | | | | | | You forgot to add the file, you broke compilation for everyone. This reverts commit df6ef6aa78ddacfac8ccac162177ee42844b1611.
| * Eo: eo_do now returns called func's value + default ret fix.Tom Hacohen2014-04-142-12/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It's now completely valid to do: a = eo_do(obj, a_get()); or: b = eo_do(obj, a_set(1), b_get()); Also, the default return value for eo2 functions is now also returned when the object is invalid, not just when the object does not match class. It's a small refactor that fixed both issues at once. @feature @fix
| * Eo: Fix class checking.Tom Hacohen2014-04-141-1/+2
| | | | | | | | | | Without this patch, NULL, and random garbage are detected as classes. This fixes is.
| * Eolian: add support for cmakeDaniel Zaoui2014-04-142-0/+7
| |
* | evas/evas3d: cleanup docs and removed unncessary files.ChunEon Park2014-04-166-641/+808
| |
* | evas/evas3d: filled up missed eo headers to be installed.ChunEon Park2014-04-151-1/+9
| |
* | evas/evas3d: don't occur build break.ChunEon Park2014-04-152-5/+2
| | | | | | | | | | | | | | the declared t3d_scene api names are not matched exactly between header and code. these name should be just "3d_scene" and still there was a Evas_3D.h reference in evas Makefile.
* | evas/evas3d - changed file access authority.ChunEon Park2014-04-158-0/+0
| | | | | | | | don't other users execute or write them.
* | evas3d: forget evas_3d.h. it's merged to evas.hChunEon Park2014-04-157-10/+5
| |
* | evas3d: fixed grammartical break.ChunEon Park2014-04-151-1/+0
| |
* | evas/evas3d - use the image loader of the evas instead of the png lib.ChunEon Park2014-04-151-124/+20
| |
* | Evas_3D : Eolian change for Evas_3D_Object.subhransu2014-04-1422-735/+512
| |
* | Evas_3D : Eolian changesubhransu2014-04-1425-3763/+5790
| |
* | fixed missing include eo headersChunEon Park2014-04-142-1/+5
| |
* | Merge branch 'master' into devs/cedric/evas-3dChunEon Park2014-04-1410-877/+310
|\ \ | |/
| * Eolian/Lexer: disable INFO and DEBUG.Daniel Zaoui2014-04-142-263/+247
| | | | | | | | | | | | | | They are not needed on normal build. Two flags have been added to enable/disable INF and DBG. Two warnings have been removed since they are not printing interesting and relevant information.
| * Eolian: Legacy integration of Evas TableYossi Kantor2014-04-134-193/+23
| |
| * Eolian: Legacy Integration of Evas TextYossi Kantor2014-04-131-393/+1
| |
| * Eolian: fix generation of Eo2 functions definitions.Daniel Zaoui2014-04-131-4/+4
| | | | | | | | When keys are used in property, the Eo2 macro was not well chosen.
| * eolian no longer generates return statements for void functionsMike Blumenkrantz2014-04-111-19/+33
| |
| * ecore_con: Force unsigned to unsigned comparisonStefan Schmidt2014-04-111-1/+1
| | | | | | | | | | | | | | | | num was changed to size_t which makes it unsigned while count is a normal (signed) int. Comparing them does not always work as expected but in this case we already checked if count is < 0 before and would have returned if that would be true. Thus we can safely cast count to unsigned here as it will be greater 0 anyway.
| * engines/evas_drm: Remove some unused variablesStefan Schmidt2014-04-111-3/+0
| |
| * ecore_con: Remove superfluous >= 0 check for unsignedStefan Schmidt2014-04-111-1/+1
| | | | | | | | | | | | Since num was changed from (signed) int to (unsigned) size_t in 16d7b981ebc22df86e4dc7719ae63677bff8b1e1 this check no longer makes sense as it will always be true.
* | Merge branch 'master' into devs/cedric/evas-3dChunEon Park2014-04-1122-7805/+56
|\ \ | |/ | | | | | | Conflicts: src/lib/evas/Evas_Eo.h
| * Eolian: Legacy integration of Evas Rectangle, Polygon, Line, Textgrid and ↵Yossi Kantor2014-04-114-620/+29
| | | | | | | | Textblock
| * Eolian: Clean out Evas Eo headerYossi Kantor2014-04-111-6589/+1
| |
| * Eolian: Clean out Ecore Audio Eo headersYossi Kantor2014-04-117-538/+3
| |
| * set default help info for multisense to match new default on stateCarsten Haitzler (Rasterman)2014-04-111-1/+1
| |
| * Eo2: Fix other forgotten ret.Daniel Zaoui2014-04-114-12/+12
| |
| * "whether" has 2x 'h'Mike Blumenkrantz2014-04-105-11/+11
| |
* | evas_3d.h should be refered by eo file to refer types defined that header.ChunEon Park2014-04-101-0/+1
| |
* | Merge branch 'devs/cedric/evas-3d' of ssh://git.enlightenment.org/core/efl ↵ChunEon Park2014-04-1043-6/+13881
|\ \ | |/ |/| | | into devs/cedric/evas-3d
| * Evas: 3D: Change the api name from t3d_scene to 3d_scene as the eolian issue ↵Subhransu Sekhar Mohanty2014-03-308-9/+9
| | | | | | | | got fixed.
| * Evas: 3D: Add missing image file for example evas-3d-proxyTaekyun Kim2014-03-301-0/+0
| |
| * Evas: 3D: API documentationTaekyun Kim2014-03-301-59/+1919
| |
| * Evas: 3D: Updated proxy texture exampleTaekyun Kim2014-03-301-7/+29
| |
| * Evas: 3D: Refined proxy texture implementationTaekyun Kim2014-03-3012-25/+106
| | | | | | | | | | Added new APIs for controlling source object's visibility. Fixed bugs related to updating proxy textures.
| * Evas: 3D: Fix typo error in preprocessor for GLESTaekyun Kim2014-03-301-1/+1
| |
| * Evas: 3D: evas_3d_node_look_at_set() bug fixTaekyun Kim2014-03-302-7/+56
| |
| * Evas: 3D: Example: MD2 mesh file exampleTaekyun Kim2014-03-304-0/+170
| | | | | | | | | | MD2 model file is from http://mb.srb2.org/showthread.php?t=34800 Thanks to Jeck Jim.
| * Evas: 3D: Example: Picking exampleTaekyun Kim2014-03-302-0/+402
| |