summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* another testdevs/stefan/mingw-hackery2Stefan Schmidt2013-07-111-1/+1
|
* Try out daniels suggestionStefan Schmidt2013-07-111-1/+1
|
* HACK: remove more const from Eo_Callback_Array_ItemStefan Schmidt2013-07-111-6/+6
|
* HACK: Remove all const from evas objects to check if that fixes the mingw buildStefan Schmidt2013-07-112-67/+67
|
* Update ChangeLog with recent pixmap functionsChris Michael2013-07-111-0/+4
| | | | Signed-off-by: Chris Michael <cp.michael@samsung.com>
* Add engine interface code for:Chris Michael2013-07-111-0/+58
| | | | | | | | | | | - ecore_evas_pixmap_visual_get - ecore_evas_pixmap_colormap_get - ecore_evas_pixmap_depth_get Assign interface functions for above when creating the new interface. When creating the pixmap, store the visual and colormap for later retrieval. Signed-off-by: Chris Michael <cp.michael@samsung.com>
* Add function code for:Chris Michael2013-07-111-0/+93
| | | | | | | | - ecore_evas_pixmap_visual_get - ecore_evas_pixmap_colormap_get - ecore_evas_pixmap_depth_get Signed-off-by: Chris Michael <cp.michael@samsung.com>
* Add visual and colormap to pixmap structureChris Michael2013-07-111-0/+2
| | | | Signed-off-by: Chris Michael <cp.michael@samsung.com>
* Add interface function definitions for:Chris Michael2013-07-111-0/+8
| | | | | | | | - pixmap_visual_get - pixmap_colormap_get - pixmap_depth_get Signed-off-by: Chris Michael <cp.michael@samsung.com>
* Add API declarations for new pixmap functionsChris Michael2013-07-111-0/+45
| | | | | | | | - ecore_evas_pixmap_visual_get - ecore_evas_pixmap_colormap_get - ecore_evas_pixmap_depth_get Signed-off-by: Chris Michael <cp.michael@samsung.com>
* efreet: it should be a #ifdef now...Cedric Bail2013-07-113-6/+6
|
* efreet: use the correct guard.Cedric Bail2013-07-113-6/+6
|
* edje: fix build break on Windows.Cedric Bail2013-07-111-2/+2
| | | | | | | | | NOTE: In C, you can only mark an area const if it is not changed at runtime, this include also the job of the linker at runtime. So this array can't be const because they use pointer from Evas that will be resolved during link at runtime, instead of link at compile time. This pass on Linux, but fail on other architecture and is actually not correct. So let's not use const here.
* examples: Make make return an error if one of the examples fails compileDaniel Willmann2013-07-111-1/+1
| | | | Signed-off-by: Daniel Willmann <d.willmann@samsung.com>
* examples: Add missing Ecore_Eo.h for some defines.Stefan Schmidt2013-07-112-0/+2
| | | | | | If we are shuffling headers around testing if in-tree examples are still working fine might be a sensible thing to do. Everybody agrees on that?
* evas gl: if img src size == dst on draw, turn smooth off to avoid ghostingCarsten Haitzler (Rasterman)2013-07-111-0/+2
|
* Update Changelog for recent ecore_evas changesChris Michael2013-07-111-0/+8
| | | | Signed-off-by: Chris Michael <cp.michael@samsung.com>
* Remove prev_front pixmap from structureChris Michael2013-07-111-3/+4
| | | | | | Use a local variable to hold previous front pixmap while swapping Signed-off-by: Chris Michael <cp.michael@samsung.com>
* Check for valid interface pixmap_get function before trying to call it.Chris Michael2013-07-111-2/+8
| | | | Signed-off-by: Chris Michael <cp.michael@samsung.com>
* Update doxygen comments wrt constant changing of pixmap idChris Michael2013-07-111-0/+16
| | | | Signed-off-by: Chris Michael <cp.michael@samsung.com>
* evas_main.c: fix a typo?Daniel Juyung Seo2013-07-111-1/+1
|
* evas: reduce memory footprint.Cedric Bail2013-07-112-57/+70
|
* edje: remove a stringshare leak on object close with textblock.Cedric Bail2013-07-111-1/+2
|
* evas - print ERR if the object coundn't be deleted when it's ref count is ↵ChunEon Park2013-07-111-1/+5
| | | | | | more than 0. In this case, evas_free() won't be exit because of the infinite loop.
* eina: update ChangeLog and NEWS.Cedric Bail2013-07-112-2/+7
|
* eina: add eina_tiler_empty.Cedric Bail2013-07-112-1/+21
|
* eina: Eina_Tiler formatting.Cedric Bail2013-07-111-17/+17
|
* eina: don't insert the same rectangle multiple time in a row.Cedric Bail2013-07-111-0/+24
|
* eina: let's not complain for nothing.Cedric Bail2013-07-111-0/+2
|
* evas - use Eina_BoolChunEon Park2013-07-111-4/+4
|
* evas - indent fix.ChunEon Park2013-07-111-21/+22
|
* evas gl engine - paranoia: check max texture size limits on texture allocCarsten Haitzler (Rasterman)2013-07-113-91/+145
|
* eet: Fix copy&paste issueIgor Murzov2013-07-111-1/+1
|
* Fix compiler warningsChris Michael2013-07-091-1/+4
| | | | | | | - include unistd.h for close function. - initialize fd to -1 so we can check error condition. Signed-off-by: Chris Michael <devilhorns@comcast.net>
* Don't leak fd handles (ie: leave files open) when checking devicesChris Michael2013-07-091-0/+3
| | | | | | NB: Fixes Coverity CID1039175 Signed-off-by: Chris Michael <cp.michael@samsung.com>
* ethumb - fix ethumbd timeout to always work at start and mid-run too.Carsten Haitzler (Rasterman)2013-07-091-20/+14
|
* ethumbd timeout to 30s to not timeout in middle of long generateCarsten Haitzler (Rasterman)2013-07-091-3/+16
|
* up ethumbd timeout to 10sec by defaultCarsten Haitzler (Rasterman)2013-07-091-1/+1
|
* evas/eet: Prevent libjpeg to redefine INT32.Stefan Schmidt2013-07-092-0/+5
| | | | | The define prevents that INT32 gets redefined in libjpeg while it already is defined for the mingw build.
* For cases of fatal errors on wl_display, return ECORE_CALLBACK_CANCELChris Michael2013-07-091-0/+4
| | | | | | in the fd_handler and idler so we stop listening there. Signed-off-by: Chris Michael <cp.michael@samsung.com>
* efreet: Guard priority settign and getting functions for WIN32Stefan Schmidt2013-07-093-0/+15
| | | | | These functions are not available on a mingw build. Not really needed either so just ifdef them.
* somehow buf is freed once its put into an event.. but before event isCarsten Haitzler (Rasterman)2013-07-091-2/+8
| | | | processed. don't allow this.
* Revert "evas: use Eina_Tiler for GL backend."Cedric Bail2013-07-091-156/+132
| | | | This reverts commit 87b49cf103ae2cefe2afd584b766342072b128a6.
* eina: improve test coverage for Eina_Clist.Sergii Kanaev2013-07-091-0/+94
| | | | | Add tests for eina_clist_add_after, eina_clist_add_head, eina_clist_next and eina_clist_add_tail.
* evas: no need to call eo_data_scope_get in many case after this change.Cedric Bail2013-07-0912-196/+455
| | | | | Reduce CPU usage by 5% in some case (especially when the CPU is not the limiting factor like with the GL backend).
* evas: use Eina_Tiler for GL backend.Cedric Bail2013-07-091-132/+156
| | | | | This is a start to leverage more on our infrastructure so that later optimizing Eina_Tiler will be more usefull.
* eldbus-codegen: If substr dont exist in string return string.José Roberto de Souza2013-07-081-0/+5
| | | | CID: 1039339
* eldbus: Correclty check if user already create a object manager iface to objectJosé Roberto de Souza2013-07-081-1/+1
| | | | CID: 1039421
* Initialize 'buf' to NULL (to avoid compiler warning)Chris Michael2013-07-081-1/+1
| | | | Signed-off-by: Chris Michael <devilhorns@comcast.net>
* Initialize 'd' to -1 so we can check on 'end' if it needs closingChris Michael2013-07-081-2/+2
| | | | Signed-off-by: Chris Michael <devilhorns@comcast.net>