platform/upstream/efl.git
12 years agoedje: reduce memcpy in edje_cc by using Eina_File.
Cedric BAIL [Sun, 20 May 2012 07:06:57 +0000 (07:06 +0000)]
edje: reduce memcpy in edje_cc by using Eina_File.

SVN revision: 71242

12 years agoedje: remove useless printf.
Cedric BAIL [Sun, 20 May 2012 07:06:31 +0000 (07:06 +0000)]
edje: remove useless printf.

SVN revision: 71241

12 years agoevas: this should fix the last remaining bug with my lockless font rendering.
Cedric BAIL [Sat, 19 May 2012 07:43:37 +0000 (07:43 +0000)]
evas: this should fix the last remaining bug with my lockless font rendering.

SVN revision: 71236

12 years agoedje: fix double opening of edje file.
Cedric BAIL [Fri, 18 May 2012 14:37:21 +0000 (14:37 +0000)]
edje: fix double opening of edje file.

NOTE: know issue, in elementary_config the size of the icon
change after a theme reload. I don't know what information is
lost between to reload. If someone can point at them, thanks.

SVN revision: 71235

12 years agoedje: add sample and tone of multisense to edje inheritance
Hyoyoung Chang [Fri, 18 May 2012 08:33:40 +0000 (08:33 +0000)]
edje: add sample and tone of multisense to edje inheritance

SVN revision: 71229

12 years agoevas - updated changelog
ChunEon Park [Fri, 18 May 2012 08:28:55 +0000 (08:28 +0000)]
evas - updated changelog

SVN revision: 71228

12 years agoevas/evas_render - and should update the mapped objects when their color is changed...
ChunEon Park [Fri, 18 May 2012 07:17:34 +0000 (07:17 +0000)]
evas/evas_render - and should update the mapped objects when their color is changed since color should be multiplied again.

SVN revision: 71226

12 years agoevas/evas_render - should call the render_post since the object color can be changed...
ChunEon Park [Fri, 18 May 2012 06:51:30 +0000 (06:51 +0000)]
evas/evas_render - should call the render_post since the object color can be changed without changing map

SVN revision: 71224

12 years agoevas: remove librsvg svg loader.
Cedric BAIL [Fri, 18 May 2012 05:02:44 +0000 (05:02 +0000)]
evas: remove librsvg svg loader.

NOTE: as librsvg is a massive source of bugs in e17, it is now
removed from evas. You can still use librsvg by using the
evas_generic_loader. Please not that you need to properly delete
it from your disk if you don't use a package manager. The file to
remove :
/*/lib/evas/modules/loaders/svg/linux-gnu-i686-1.2.*/module.so

SVN revision: 71223

12 years agoevas: don't try to walk if we don't have anything to walk on.
Cedric BAIL [Fri, 18 May 2012 03:16:22 +0000 (03:16 +0000)]
evas: don't try to walk if we don't have anything to walk on.

SVN revision: 71221

12 years agoevas: another improvement part of the previous lock less font rendering patch.
Cedric BAIL [Fri, 18 May 2012 02:16:54 +0000 (02:16 +0000)]
evas: another improvement part of the previous lock less font rendering patch.

Now evas will in all case do the layout during the prepare stage. It will do that
once and as long as the text didn't change. This does improve by a factor of at
least 2.3 in all expedite test case except the text change that only get a 30%
increase (I expect a drop in performance on non pipe rendering for text change
expedite test only, but this case is not common in real life).

This also fix the issue that show random size glyph when using pipe rendering.

SVN revision: 71220

12 years agoDisabling eina_model examples, so that we can build examples and documentation.
Jonas M. Gastal [Thu, 17 May 2012 22:00:46 +0000 (22:00 +0000)]
Disabling eina_model examples, so that we can build examples and documentation.

SVN revision: 71218

12 years agoEcore_Evas (wayland_shm): Quiet down output and set alpha & rotation
Christopher Michael [Thu, 17 May 2012 13:56:37 +0000 (13:56 +0000)]
Ecore_Evas (wayland_shm): Quiet down output and set alpha & rotation
on initial ee setup.

SVN revision: 71202

12 years agoEcore_Wayland: Quiet down output for robster ;)
Christopher Michael [Thu, 17 May 2012 13:55:14 +0000 (13:55 +0000)]
Ecore_Wayland: Quiet down output for robster ;)

SVN revision: 71201

12 years agoevas - removed unnecessary fields, changed_nomove and changed_move_only.
ChunEon Park [Thu, 17 May 2012 10:51:54 +0000 (10:51 +0000)]
evas - removed unnecessary fields, changed_nomove and changed_move_only.

These are actually not necessary right now.

SVN revision: 71199

12 years agoevas/evas_render - removed dead code
ChunEon Park [Thu, 17 May 2012 10:34:53 +0000 (10:34 +0000)]
evas/evas_render - removed dead code

SVN revision: 71198

12 years agoeina: avoid wrong implicit conversion from unsigned to unsigned long in Eina_Value...
Cedric BAIL [Thu, 17 May 2012 09:59:46 +0000 (09:59 +0000)]
eina: avoid wrong implicit conversion from unsigned to unsigned long in Eina_Value tests

There is no automatic promotion of unsigned to unsigned long when using va_arg,
which means it is illegal to pass an 'unsigned' value and then use it as an
unsigned long in eina_arg_vset. Doing so yields incorrect results on some
architectures like itanium

Patch by  Albin 'Lutin' Tonnerre <albin.tonnerre@gmail.com>

SVN revision: 71196

12 years agoeina: don't assume that 'char' is a signed type in Eina_Value
Cedric BAIL [Thu, 17 May 2012 09:56:28 +0000 (09:56 +0000)]
eina: don't assume that 'char' is a signed type in Eina_Value

The eina_value code TYPE_CHAR conversion code assumes that 'char' is a signed
type, which is not true on some platforms like ARM and PPC. We need to
explicitely use signed chars to make sure the value is correct.

Patch by Albin 'Lutin' Tonnerre <albin.tonnerre@gmail.com>

SVN revision: 71195

12 years agoEcore_evas: add tranparency support for the GDI engine
Vincent Torri [Thu, 17 May 2012 08:40:13 +0000 (08:40 +0000)]
Ecore_evas: add tranparency support for the GDI engine

SVN revision: 71193

12 years agofix a couple of warnings
Vincent Torri [Thu, 17 May 2012 08:31:51 +0000 (08:31 +0000)]
fix a couple of warnings

SVN revision: 71192

12 years agoUpdating documentation and NEWS for EvasGL Multisample Surface
Sung Park [Thu, 17 May 2012 06:54:06 +0000 (06:54 +0000)]
Updating documentation and NEWS for EvasGL Multisample Surface
bits along with general doc update.

SVN revision: 71191

12 years agoEo: Added extern "C" for the C++ fellows.
Tom Hacohen [Thu, 17 May 2012 06:22:50 +0000 (06:22 +0000)]
Eo: Added extern "C" for the C++ fellows.

Oops, forgot, thanks to Yakov for letting me know.

SVN revision: 71189

12 years agoMissing entries
Vincent Torri [Wed, 16 May 2012 21:46:56 +0000 (21:46 +0000)]
Missing entries

SVN revision: 71181

12 years agoEvas: use Esvg for svg rendering.
Vincent Torri [Wed, 16 May 2012 21:28:36 +0000 (21:28 +0000)]
Evas: use Esvg for svg rendering.

If Esvg is not found, librsvg is used (if found)

See README to see how to installe Esvg

SVN revision: 71180

12 years agoAdding an Ecore_exe example to documentation.
Jonas M. Gastal [Wed, 16 May 2012 17:23:51 +0000 (17:23 +0000)]
Adding an Ecore_exe example to documentation.

Author:    Guilherme Iscaro <iscaro@profusion.mobi>

SVN revision: 71174

12 years agoFreeBSD 4.x was released more than a decade ago (the project itself only
Vincent Torri [Wed, 16 May 2012 14:16:37 +0000 (14:16 +0000)]
FreeBSD 4.x was released more than a decade ago (the project itself only
supports FreeBSD >= 7 these days), so the check for __FreeBSD_version >=
420001 is not necessary anymore (plus it probably never worked, as that
macro is defined in sys/param.h, which is not included prior to the
check).

Patch by Raphael Kubo da Costa

SVN revision: 71172

12 years agoevas/evas_render - trivial changes
ChunEon Park [Wed, 16 May 2012 13:21:37 +0000 (13:21 +0000)]
evas/evas_render - trivial changes

changed from integers to Eina_Bool
removed white spaces and fixed indentations

SVN revision: 71170

12 years agoevas/evas_render - added evas_object_change_reset internal function to remove much...
ChunEon Park [Wed, 16 May 2012 12:59:33 +0000 (12:59 +0000)]
evas/evas_render - added evas_object_change_reset internal function to remove much duplicated code

SVN revision: 71169

12 years agofix video overlay suport in emotion.
Carsten Haitzler [Wed, 16 May 2012 11:18:57 +0000 (11:18 +0000)]
fix video overlay suport in emotion.

SVN revision: 71161

12 years agowork around the workaround so it works until ecore thread goop fixed.
Carsten Haitzler [Wed, 16 May 2012 11:04:40 +0000 (11:04 +0000)]
work around the workaround so it works until ecore thread goop fixed.

SVN revision: 71155

12 years agoedje: fix text and table with fixed point and clamp image tween.
Cedric BAIL [Wed, 16 May 2012 10:37:44 +0000 (10:37 +0000)]
edje: fix text and table with fixed point and clamp image tween.

SVN revision: 71152

12 years agoeina: cleanup and merge code for sin and cos.
Cedric BAIL [Wed, 16 May 2012 10:12:06 +0000 (10:12 +0000)]
eina: cleanup and merge code for sin and cos.

NOTE: this patch is part of the previous attempt to fix
rounding error. Hopefully things are better now.

SVN revision: 71150

12 years agoEvas (gl_x11): Unbreak build for gles_sgx & s3c6410. Someone removed a
Christopher Michael [Wed, 16 May 2012 08:03:31 +0000 (08:03 +0000)]
Evas (gl_x11): Unbreak build for gles_sgx & s3c6410. Someone removed a
variable that was actually being used :(

SVN revision: 71146

12 years agoEcore_Evas (wayland_shm): Apply patch from Robert Bradford
Christopher Michael [Wed, 16 May 2012 07:44:43 +0000 (07:44 +0000)]
Ecore_Evas (wayland_shm): Apply patch from Robert Bradford
<robert.bradford@intel.com> to refactor shm pool allocation function,
and adjust pool calculation.

SVN revision: 71145

12 years agowork around race condition bug in ecore for now so edje_cc is reliable
Carsten Haitzler [Wed, 16 May 2012 07:43:14 +0000 (07:43 +0000)]
work around race condition bug in ecore for now so edje_cc is reliable
again. CEDRIIIIIIIIIIIIIIIIIIIC!

SVN revision: 71144

12 years agoand clean up some of the work on parallelized edje_cc. code less ugly
Carsten Haitzler [Wed, 16 May 2012 02:15:45 +0000 (02:15 +0000)]
and clean up some of the work on parallelized edje_cc. code less ugly
now.

SVN revision: 71138

12 years ago[evas] Just some tweaks on Evas_Smart_Class' docs.
Gustavo Lima Chaves [Wed, 16 May 2012 01:39:53 +0000 (01:39 +0000)]
[evas] Just some tweaks on Evas_Smart_Class' docs.

SVN revision: 71137

12 years agoecore: fix typoe in README
Jihoon Kim [Wed, 16 May 2012 01:03:17 +0000 (01:03 +0000)]
ecore: fix typoe in README

SVN revision: 71135

12 years agoevas: fix typo in README
Jihoon Kim [Wed, 16 May 2012 01:02:51 +0000 (01:02 +0000)]
evas: fix typo in README

SVN revision: 71134

12 years agoevas gl_x11 engine: remove unused variables
Jihoon Kim [Wed, 16 May 2012 01:01:55 +0000 (01:01 +0000)]
evas gl_x11 engine: remove unused variables

SVN revision: 71133

12 years agoevas/cserve2: Use width and horizontal bearing from
Rafael Antognolli [Tue, 15 May 2012 21:15:20 +0000 (21:15 +0000)]
evas/cserve2: Use width and horizontal bearing from
 glyph metrics.
Instead of having to render the glyph to get the width and horizontal
bearing of it, it's possible to get this information from the glyph
metrics (which are available on the glyph slot).

This change now allows Evas to only render the glyph at the rendering
phase, instead of having to render it during layout phase.

SVN revision: 71132

12 years agoevas/cserve2: Split out the glyph rendering code from
Rafael Antognolli [Tue, 15 May 2012 21:15:08 +0000 (21:15 +0000)]
evas/cserve2: Split out the glyph rendering code from
 glyph_get().
Now it's possible to get a font glyph without needing to render it
(although Evas is not doing so).

SVN revision: 71131

12 years agoEo: Fixed error message.
Tom Hacohen [Tue, 15 May 2012 15:06:40 +0000 (15:06 +0000)]
Eo: Fixed error message.

SVN revision: 71125

12 years agoEcore_Evas (wayland_shm): After some testing, it actually is better to
Christopher Michael [Tue, 15 May 2012 14:30:57 +0000 (14:30 +0000)]
Ecore_Evas (wayland_shm): After some testing, it actually is better to
only damage the portions that change (for the case of rendering).

SVN revision: 71123

12 years agoEo: Fixed error in docs.
Tom Hacohen [Tue, 15 May 2012 14:17:10 +0000 (14:17 +0000)]
Eo: Fixed error in docs.

SVN revision: 71122

12 years agoEo: Added interface example.
Tom Hacohen [Tue, 15 May 2012 14:17:07 +0000 (14:17 +0000)]
Eo: Added interface example.

SVN revision: 71121

12 years agoEo: Added support for event freeze/thaw.
Tom Hacohen [Tue, 15 May 2012 14:17:03 +0000 (14:17 +0000)]
Eo: Added support for event freeze/thaw.

SVN revision: 71120

12 years agoEo: Added support for class functions.
Tom Hacohen [Tue, 15 May 2012 14:16:58 +0000 (14:16 +0000)]
Eo: Added support for class functions.

SVN revision: 71119

12 years agoEo: Change mro_itr functions to be more generic.
Tom Hacohen [Tue, 15 May 2012 14:16:54 +0000 (14:16 +0000)]
Eo: Change mro_itr functions to be more generic.

SVN revision: 71118

12 years agoEvas (wayland_egl): Fix compiler warnings. Use proper log_domain name.
Christopher Michael [Tue, 15 May 2012 13:21:01 +0000 (13:21 +0000)]
Evas (wayland_egl): Fix compiler warnings. Use proper log_domain name.
Fix static build of the engine. Define the proper module name.

SVN revision: 71116

12 years agoEvas (gl_x11): Fix commit snafu so gl_x11 builds again.
Christopher Michael [Tue, 15 May 2012 13:13:05 +0000 (13:13 +0000)]
Evas (gl_x11): Fix commit snafu so gl_x11 builds again.

SVN revision: 71115

12 years agoEvas (wayland_egl): Fix build. Add missing files, remove unused ones.
Christopher Michael [Tue, 15 May 2012 13:07:32 +0000 (13:07 +0000)]
Evas (wayland_egl): Fix build. Add missing files, remove unused ones.

SVN revision: 71114

12 years agoadd @since's
Carsten Haitzler [Tue, 15 May 2012 12:31:47 +0000 (12:31 +0000)]
add @since's

SVN revision: 71113

12 years agooptimize edje_cc - now betwene 3.5 x and 4x as fast. new options
Carsten Haitzler [Tue, 15 May 2012 12:29:22 +0000 (12:29 +0000)]
optimize edje_cc - now betwene 3.5 x and 4x as fast. new options
(-fastcomp and -fastdecomp) -fastcomp makes for faster decompressing
AND faster compressing of edj files, -fastdecomp is a bit slower on
compression but also as fast as -fastcomp in decompression. note that
edje files built with these optiosn will not work on older edje
installations, thus they are options.

SVN revision: 71112

12 years agoadd lz4 compression options to eet. remove amalgamated build too.
Carsten Haitzler [Tue, 15 May 2012 12:27:56 +0000 (12:27 +0000)]
add lz4 compression options to eet. remove amalgamated build too.

SVN revision: 71111

12 years agoEvas (wayland_egl): Update wayland_egl engine to match recent gl_x11
Christopher Michael [Tue, 15 May 2012 12:03:01 +0000 (12:03 +0000)]
Evas (wayland_egl): Update wayland_egl engine to match recent gl_x11
changes.

SVN revision: 71109

12 years agoEcore_Evas (wayland): Support for setting shell_surface title & class
Christopher Michael [Tue, 15 May 2012 12:01:46 +0000 (12:01 +0000)]
Ecore_Evas (wayland): Support for setting shell_surface title & class
in wayland compositors. Added alpha support for wayland_egl. Support
evas output rotation in wayland_egl. Don't move/resize windows in
wayland_egl unless sizes actually change. Included patch from Robert
Bradford <robert.bradford@intel.com> for vertical/horizontal mouse
wheel scrolling.

SVN revision: 71108

12 years agoEcore_Wayland: Update ecore_wayland to work with recent wayland git:
Christopher Michael [Tue, 15 May 2012 11:58:21 +0000 (11:58 +0000)]
Ecore_Wayland: Update ecore_wayland to work with recent wayland git:
This commit also includes patch(s) from Robert Bradford
<robert.bradford@intel.com> for Supporting vertical/horizontal
scrolling, and updates to wayland fixed point for input events.

Fix ecore_wl_input to use new libxkbcommon api.
Add new surface_enter/leave listener for ecore_wl_window.

SVN revision: 71107

12 years agoevas/evas_render - clean code more in _evas_render_phase1_object_process
ChunEon Park [Tue, 15 May 2012 11:43:23 +0000 (11:43 +0000)]
evas/evas_render - clean code more in _evas_render_phase1_object_process

SVN revision: 71106

12 years agoevas/render - removed unnecessary parameter in _evas_render_phase1_object_process
ChunEon Park [Tue, 15 May 2012 11:29:28 +0000 (11:29 +0000)]
evas/render - removed unnecessary parameter in _evas_render_phase1_object_process

SVN revision: 71105

12 years agoevas: apparently i am not the only user of the pipeline rendering.
Cedric BAIL [Tue, 15 May 2012 11:11:33 +0000 (11:11 +0000)]
evas: apparently i am not the only user of the pipeline rendering.

SVN revision: 71104

12 years agoevas - reverted 71099. my mistake
ChunEon Park [Tue, 15 May 2012 08:22:06 +0000 (08:22 +0000)]
evas - reverted 71099. my mistake

SVN revision: 71101

12 years agoeet: unborking !
Cedric BAIL [Tue, 15 May 2012 07:51:00 +0000 (07:51 +0000)]
eet: unborking !

SVN revision: 71100

12 years agoevas - removed unnecessary compares
ChunEon Park [Tue, 15 May 2012 07:30:15 +0000 (07:30 +0000)]
evas - removed unnecessary compares

SVN revision: 71099

12 years agofix eet_dict locks and formatting.
Carsten Haitzler [Tue, 15 May 2012 07:06:12 +0000 (07:06 +0000)]
fix eet_dict locks and formatting.

SVN revision: 71097

12 years agoeet: make eet_dictionary thread safe.
Cedric BAIL [Tue, 15 May 2012 06:43:07 +0000 (06:43 +0000)]
eet: make eet_dictionary thread safe.

SVN revision: 71094

12 years agoeina_cpu: use __asm__ instead of asm
Vincent Torri [Tue, 15 May 2012 05:48:27 +0000 (05:48 +0000)]
eina_cpu: use __asm__ instead of asm

SVN revision: 71092

12 years agoedje: remove some printf.
Cedric BAIL [Tue, 15 May 2012 03:24:31 +0000 (03:24 +0000)]
edje: remove some printf.

SVN revision: 71088

12 years agoEo: add a check for future static classes.
Tom Hacohen [Mon, 14 May 2012 15:20:46 +0000 (15:20 +0000)]
Eo: add a check for future static classes.

SVN revision: 71078

12 years agoand fix wrong merge, damn it!
Iván Briano [Mon, 14 May 2012 15:17:12 +0000 (15:17 +0000)]
and fix wrong merge, damn it!

SVN revision: 71077

12 years agobot warnings begone, hopefully
Iván Briano [Mon, 14 May 2012 15:05:04 +0000 (15:05 +0000)]
bot warnings begone, hopefully

SVN revision: 71076

12 years agoEo: Added the two events I removed by accident.
Tom Hacohen [Mon, 14 May 2012 13:33:26 +0000 (13:33 +0000)]
Eo: Added the two events I removed by accident.

SVN revision: 71001

12 years agoEo: renamed eo_constructor_error_* -> eo_error_*.
Tom Hacohen [Mon, 14 May 2012 11:57:28 +0000 (11:57 +0000)]
Eo: renamed eo_constructor_error_* -> eo_error_*.

This is in preperation of a future change to be able to set errors in
function calls as well, and not just constructors.
Also, I improved the error reporting.

SVN revision: 71000

12 years agoEo: Add missing @def to docs.
Tom Hacohen [Mon, 14 May 2012 11:57:25 +0000 (11:57 +0000)]
Eo: Add missing @def to docs.

SVN revision: 70999

12 years agoedje: preserve drag information to.
Cedric BAIL [Mon, 14 May 2012 11:18:45 +0000 (11:18 +0000)]
edje: preserve drag information to.

SVN revision: 70997

12 years agoevas: warning--, tasn.happy++.
Cedric BAIL [Mon, 14 May 2012 09:21:50 +0000 (09:21 +0000)]
evas: warning--, tasn.happy++.

SVN revision: 70993

12 years agoAdding MSAA (Multisample Anti-Aliased) Surface Option to Evas GL.
Sung Park [Mon, 14 May 2012 08:52:56 +0000 (08:52 +0000)]
Adding MSAA (Multisample Anti-Aliased) Surface Option to Evas GL.
Currently, this feature is only supported in EGL/GLESv2 environment
with GL_IMG_multisampled_render_to_texture extension supported.

_____________________

from:    (sanghee park) sh15.park@samsung.com

Dear all,

     I compose this mail to ask reviewal this patch about multisampling on the evasgl.
     I want to make multisampling capacity to enhance rendering quality of the evasgl.
     But if MSAA is applied always, this have possibility lowering rendering performance,
     I separated user's input level to high, mid, low, none.
     If you want to test this patch, try to examine rendering qulity on EGL circumstance with multisampling level.
     Plaese review it, and any suggestion will be appreciated.

     Best Regards,
     SangHee

SVN revision: 70992

12 years agoEo: Move event callback handling to base class.
Tom Hacohen [Mon, 14 May 2012 07:35:19 +0000 (07:35 +0000)]
Eo: Move event callback handling to base class.

SVN revision: 70990

12 years agoEo: Removed the object freed event.
Tom Hacohen [Mon, 14 May 2012 07:35:14 +0000 (07:35 +0000)]
Eo: Removed the object freed event.

SVN revision: 70989

12 years agoFix pixman rendering support if you set alpha flag AFTER
Carsten Haitzler [Mon, 14 May 2012 06:56:22 +0000 (06:56 +0000)]
Fix pixman rendering support if you set alpha flag AFTER
setting image size for custom image data.

SVN revision: 70987

12 years agoedje - more detailed documentation
ChunEon Park [Mon, 14 May 2012 01:12:02 +0000 (01:12 +0000)]
edje - more detailed documentation

SVN revision: 70981

12 years agoFrom: Rajeev Ranjan <rajeev.r@samsung.com>
Rajeev Ranjan [Sun, 13 May 2012 04:24:28 +0000 (04:24 +0000)]
From: Rajeev Ranjan <rajeev.r@samsung.com>
Subject: [E-devel] [PATCH][EDJE] Patch to remove the alpha from image
header while saving if the alpha is set to 1 but the image is fully
opaque

Attached to the mail is a patch to set the alpha information for an
image header to 0 with alpha present but all the texels being opaque.
Continuing to our discussion, as suggested by many people in the
community it has been implemented at edje_cc level.

Change description:
    While compiling the edc file, image data for image files is
scanned to find out whether the alpha value in header is set to 1 and
is not being used in the image.
  If this is the case, while writing to eet the alpha is set to 0 to
avoid blending for such images in the graphics pipeline when used by
evas.

SVN revision: 70954

12 years agofix randr segv's waiting to happen. bad mem managment :(
Carsten Haitzler [Sun, 13 May 2012 01:06:01 +0000 (01:06 +0000)]
fix randr segv's waiting to happen. bad mem managment :(

SVN revision: 70951

12 years agoLEAKS! GONE!
Iván Briano [Fri, 11 May 2012 20:12:56 +0000 (20:12 +0000)]
LEAKS! GONE!

 - Cleanup cache2 things on shutdown
 - Use Eina_File instead of straight shm_open + mmap when loading things from cserve2
 - Do free the mapped images when we don't need them

SVN revision: 70936

12 years agoEcore: do not use += with shell variables (not portable)
Vincent Torri [Fri, 11 May 2012 17:40:46 +0000 (17:40 +0000)]
Ecore: do not use += with shell variables (not portable)

Patch by Raphael Kubo da Costa

SVN revision: 70934

12 years agoChanging the description of ecore_exe module
Jonas M. Gastal [Fri, 11 May 2012 14:08:12 +0000 (14:08 +0000)]
Changing the description of ecore_exe module

Author:    Guilherme Iscaro <iscaro@profusion.mobi>

SVN revision: 70933

12 years agoAdding a warning to the file handler callback saying that the function
Jonas M. Gastal [Fri, 11 May 2012 14:08:07 +0000 (14:08 +0000)]
Adding a warning to the file handler callback saying that the function
can't be used to monitor regular files, like text files

Author:    Guilherme Iscaro <iscaro@profusion.mobi>

SVN revision: 70932

12 years agoefreet: useless work of the day, faster loading of mime type.
Cedric BAIL [Fri, 11 May 2012 10:54:47 +0000 (10:54 +0000)]
efreet: useless work of the day, faster loading of mime type.

SVN revision: 70931

12 years agoeina: that was a useless piece of code !
Cedric BAIL [Fri, 11 May 2012 10:51:29 +0000 (10:51 +0000)]
eina: that was a useless piece of code !

SVN revision: 70930

12 years agoedje: destroy the temporary file when leaving.
Cedric BAIL [Fri, 11 May 2012 10:50:47 +0000 (10:50 +0000)]
edje: destroy the temporary file when leaving.

SVN revision: 70929

12 years agoeet: force closing all file on shutdown.
Cedric BAIL [Fri, 11 May 2012 10:28:02 +0000 (10:28 +0000)]
eet: force closing all file on shutdown.

SVN revision: 70928

12 years agoecore: fix SOCKS proxy doc. That should be in doxygen anyway. Wondering
Cedric BAIL [Fri, 11 May 2012 02:37:14 +0000 (02:37 +0000)]
ecore: fix SOCKS proxy doc. That should be in doxygen anyway. Wondering
how.

SVN revision: 70924

12 years agoevas: detect properly when we wippe out font information.
Cedric BAIL [Fri, 11 May 2012 01:50:40 +0000 (01:50 +0000)]
evas: detect properly when we wippe out font information.

SVN revision: 70923

12 years agoedje: Add edje_watch to gitignore
Mike McCormack [Thu, 10 May 2012 21:25:34 +0000 (21:25 +0000)]
edje: Add edje_watch to gitignore

SVN revision: 70919

12 years agoEdje: do not fail if eio is not available (edje_watch is compiled only if eio is...
Vincent Torri [Thu, 10 May 2012 17:49:53 +0000 (17:49 +0000)]
Edje: do not fail if eio is not available (edje_watch is compiled only if eio is available)

SVN revision: 70912

12 years agoFix whatever went wrong here that made software sluggish when not using pipe render
Iván Briano [Thu, 10 May 2012 17:42:25 +0000 (17:42 +0000)]
Fix whatever went wrong here that made software sluggish when not using pipe render

SVN revision: 70911

12 years agoSend mouse move event before mouse down event in ecore_extn.
Jiyoun Park [Thu, 10 May 2012 09:04:44 +0000 (09:04 +0000)]
Send mouse move event before mouse down event in ecore_extn.

SVN revision: 70906

12 years agoecore: trying to reduce rounding error in ecore.
Cedric BAIL [Thu, 10 May 2012 08:41:50 +0000 (08:41 +0000)]
ecore: trying to reduce rounding error in ecore.

As we move back and forth from double to fixed point, we do
have some rounding error. I am trying to limit them at much as
possible by reducing the number of computation in double.

SVN revision: 70905

12 years agoedje: preserve user box and table items during call of edje_object_file_set.
Cedric BAIL [Thu, 10 May 2012 05:37:38 +0000 (05:37 +0000)]
edje: preserve user box and table items during call of edje_object_file_set.

NOTE: now you can change theme dynamically in elementary apps more reliably.
This doesn't handle the case where the swallow was done in a parent object and
the reswallow should happen in a another group. I don't how to fix that use
case.
don't see yet how to handle that

SVN revision: 70901

12 years agoedje: add more protection during edje_emit.
Cedric BAIL [Wed, 9 May 2012 10:44:02 +0000 (10:44 +0000)]
edje: add more protection during edje_emit.

SVN revision: 70894