platform/upstream/efl.git
11 years agoEPhysics: listen for associated evas object resize event
Bruno Dilly [Mon, 13 Aug 2012 22:24:47 +0000 (22:24 +0000)]
EPhysics: listen for associated evas object resize event

So physics body will resize together.

SVN revision: 75230

11 years agoEPhysics: fix updating bodies with evas object without
Bruno Dilly [Mon, 13 Aug 2012 22:24:36 +0000 (22:24 +0000)]
EPhysics: fix updating bodies with evas object without
 geometry

If a evas object associated to a body don't have w or h, don't
try to apply map / rotation on it.

SVN revision: 75229

11 years agoEPhysics: add camera move event
Bruno Dilly [Mon, 13 Aug 2012 22:24:28 +0000 (22:24 +0000)]
EPhysics: add camera move event

SVN revision: 75228

11 years agoEvas (wayland_egl): More bug fixes & cleanups ! :)
Christopher Michael [Mon, 13 Aug 2012 14:36:25 +0000 (14:36 +0000)]
Evas (wayland_egl): More bug fixes & cleanups ! :)

When we create the egl window we should take rotation into
consideration, so account for that. Add an 'edges' variable to the
engine info structure. This is needed so we can implement resizing
windows from the top also. Make sure to use
wl_egl_window_get_attached_size and determine the edge we are resizing
from, so we can calculate the difference in sizes to send to
wl_egl_window_resize.

Add __UNUSED__ to function paramaters where it was missing, and fix
some compiler warnings.

SVN revision: 75215

11 years agoEcore_Evas (wayland): Fix ecore_evas egl windows to properly resize
Christopher Michael [Mon, 13 Aug 2012 14:33:05 +0000 (14:33 +0000)]
Ecore_Evas (wayland): Fix ecore_evas egl windows to properly resize
from the top when asked too (this is akin to the wayland_shm resize
fix). Also, when we update the ecore_wl_window size, we
should be sure to call the buffer attach function so that server size
allocation can be kept in sync with the window allocation.

SVN revision: 75214

11 years agoEcore_Wayland (egl): Update server allocation when window allocation
Christopher Michael [Mon, 13 Aug 2012 14:30:58 +0000 (14:30 +0000)]
Ecore_Wayland (egl): Update server allocation when window allocation
changes.

SVN revision: 75213

11 years agopatch from vtorri fixing rare segv condition in main loop
Mike Blumenkrantz [Mon, 13 Aug 2012 10:32:20 +0000 (10:32 +0000)]
patch from vtorri fixing rare segv condition in main loop

SVN revision: 75206

11 years agoextend ecore fork infra to handle pipe re-create afetr fork for
Carsten Haitzler [Mon, 13 Aug 2012 08:52:45 +0000 (08:52 +0000)]
extend ecore fork infra to handle pipe re-create afetr fork for
ecore-evas.

SVN revision: 75194

11 years agofix async event fd after fork. pipe re-create
Carsten Haitzler [Mon, 13 Aug 2012 08:52:23 +0000 (08:52 +0000)]
fix async event fd after fork. pipe re-create

SVN revision: 75193

11 years agowindows warning--
Mike Blumenkrantz [Mon, 13 Aug 2012 07:53:24 +0000 (07:53 +0000)]
windows warning--
this commit brought to you by VRC: Vtorri Remote Commits

SVN revision: 75190

11 years agoEdje: Remove unused variable.
Christopher Michael [Mon, 13 Aug 2012 06:44:56 +0000 (06:44 +0000)]
Edje: Remove unused variable.

SVN revision: 75185

11 years agoformatting.
Carsten Haitzler [Mon, 13 Aug 2012 02:55:41 +0000 (02:55 +0000)]
formatting.

SVN revision: 75184

11 years agowarning--
Carsten Haitzler [Mon, 13 Aug 2012 02:54:57 +0000 (02:54 +0000)]
warning--

SVN revision: 75183

11 years agodocs + @since for ecore_fork()
Carsten Haitzler [Mon, 13 Aug 2012 02:53:48 +0000 (02:53 +0000)]
docs + @since for ecore_fork()

SVN revision: 75182

11 years agoFix documentation typos
Eduardo de Barros Lima [Sun, 12 Aug 2012 23:34:54 +0000 (23:34 +0000)]
Fix documentation typos

SVN revision: 75179

11 years agocleaning formats.
Carsten Haitzler [Sun, 12 Aug 2012 04:18:44 +0000 (04:18 +0000)]
cleaning formats.

SVN revision: 75160

11 years agofinally found evas_map weirdness bug. CEDRIC code...! commit #74180.
Carsten Haitzler [Sun, 12 Aug 2012 04:17:42 +0000 (04:17 +0000)]
finally found evas_map weirdness bug. CEDRIC code...! commit #74180.

now here's the rub. from the glibc manual page:

...
       int memcmp(const void *s1, const void *s2, size_t n);

DESCRIPTION
       The  memcmp()  function compares the first n bytes (each interpreted as
       unsigned char) of the memory areas s1 and s2.  It  returns  an integer
       less than, equal to, or greater than zero if s1 is found, respectively,
       to be less than, to match, or be greater than s2.

RETURN VALUE
       The memcmp() function returns  an  integer  less  than, equal  to,  or
       greater than zero if the first n bytes of s1 is found, respectively, to
       be less than, to match, or be greater than the first n bytes of s2.

...

this explicitly says that s1 and s2 have their BYTES compared... and
then returns just some value < 0, 0 or > 0 based on the difference. what
that value is and means is not defined, as long as it is < 0, 0 or > 0.

so the C standard has this to say:

6.3.1.3 Signed and unsigned integers

2. Otherwise, if the new type is unsigned, the value is converted by
repeatedly adding or subtracting one more than the maximum value that
can be represented in the new type until the value is in the range of
the new type.

so a result of -255 (possible) is converted by REPEATEDLY adding the
max size of the new type (255) until within range... so ...
-255 + 255 = 0 ... within range.. BUT FALSE!

so why do we see this now? something changed in memcpy behavior.
before we ONLY saw values of -1, 0 or 1 - nothing else, NOW we see
thins like:

-12288
49152
4096
16384
61440
-53248

so memcpy changed behavior, though within specs of the manual page
anyway, but now the values can be ones that break the simple assignment.

SVN revision: 75159

11 years agorever part of stefan's coverage patch - not related to the other bits
Carsten Haitzler [Sun, 12 Aug 2012 02:40:49 +0000 (02:40 +0000)]
rever part of stefan's coverage patch - not related to the other bits
and yes.. wrong :)

SVN revision: 75158

11 years agoEPhysics: add test using different shapes
Bruno Dilly [Fri, 10 Aug 2012 21:05:28 +0000 (21:05 +0000)]
EPhysics: add test using different shapes

Position / size looks buggy.
Need to be fixed.

SVN revision: 75153

11 years agoEPhysics: support bodies with generic shapes
Bruno Dilly [Fri, 10 Aug 2012 21:05:19 +0000 (21:05 +0000)]
EPhysics: support bodies with generic shapes

Using EPhysics Shape.

SVN revision: 75152

11 years agoEPhysics: add EPhysics Shape
Bruno Dilly [Fri, 10 Aug 2012 21:05:13 +0000 (21:05 +0000)]
EPhysics: add EPhysics Shape

It will be used to create bodies with collision shapes other
than boxes or circles.

For now, only convex shapes.

SVN revision: 75151

11 years agoEPhysics: move code duplication to _ephysics_body_add
Bruno Dilly [Fri, 10 Aug 2012 21:05:05 +0000 (21:05 +0000)]
EPhysics: move code duplication to _ephysics_body_add

Also, add missing checks.

SVN revision: 75150

11 years agoEPhysics: update images
Bruno Dilly [Fri, 10 Aug 2012 21:04:51 +0000 (21:04 +0000)]
EPhysics: update images

Remove unused and add new images

SVN revision: 75149

11 years agoEPhysics: Avoid garbagge in cb objects.
Bruno Dilly [Fri, 10 Aug 2012 21:04:42 +0000 (21:04 +0000)]
EPhysics: Avoid garbagge in cb objects.

SVN revision: 75148

11 years agoEPhysics: optimization and fixes for camera
Bruno Dilly [Fri, 10 Aug 2012 21:04:35 +0000 (21:04 +0000)]
EPhysics: optimization and fixes for camera

Avoid calling update of inactive bodies if camera didn't really
moved.

And update them if camera_position_set is called.

SVN revision: 75147

11 years agoEPhysics: fix world event callbacks management
Bruno Dilly [Fri, 10 Aug 2012 21:04:22 +0000 (21:04 +0000)]
EPhysics: fix world event callbacks management

SVN revision: 75146

11 years agoEPhysics: avoid invalid read / writes on world free
Bruno Dilly [Fri, 10 Aug 2012 21:04:16 +0000 (21:04 +0000)]
EPhysics: avoid invalid read / writes on world free

Looks like we'll need to fix discrete dynamics world destructor
on bullet, but current revision is kind of messed.
I'll see what I can do later.

And yes, it will leak the ddw until it's fixed.

SVN revision: 75145

11 years agoEPhysics: improving body's event callbacks management
Bruno Dilly [Fri, 10 Aug 2012 21:04:08 +0000 (21:04 +0000)]
EPhysics: improving body's event callbacks management

SVN revision: 75144

11 years agoEPhysics: fix sleeping threshold getter
Bruno Dilly [Fri, 10 Aug 2012 21:03:57 +0000 (21:03 +0000)]
EPhysics: fix sleeping threshold getter

SVN revision: 75143

11 years agoEPhysics: re-write sleeping threshold test
Bruno Dilly [Fri, 10 Aug 2012 21:03:47 +0000 (21:03 +0000)]
EPhysics: re-write sleeping threshold test

It was buggy.

SVN revision: 75142

11 years agoEPhysics: properly handle body delete
Bruno Dilly [Fri, 10 Aug 2012 21:03:39 +0000 (21:03 +0000)]
EPhysics: properly handle body delete

SVN revision: 75141

11 years agoEPhysics: properly handle world delete
Bruno Dilly [Fri, 10 Aug 2012 21:03:29 +0000 (21:03 +0000)]
EPhysics: properly handle world delete

SVN revision: 75140

11 years agoEPhysics: use inlist for world's bodies list
Bruno Dilly [Fri, 10 Aug 2012 21:03:06 +0000 (21:03 +0000)]
EPhysics: use inlist for world's bodies list

SVN revision: 75139

11 years agoEPhysics: use inlist for worlds list
Bruno Dilly [Fri, 10 Aug 2012 21:03:01 +0000 (21:03 +0000)]
EPhysics: use inlist for worlds list

SVN revision: 75138

11 years agoEPhysics: Add test exposing delete issues
Bruno Dilly [Fri, 10 Aug 2012 21:02:56 +0000 (21:02 +0000)]
EPhysics: Add test exposing delete issues

Callbacks and bodies delete are not correctly handled.

SVN revision: 75137

11 years agoEPhysics: fix camera track test
Bruno Dilly [Fri, 10 Aug 2012 21:02:48 +0000 (21:02 +0000)]
EPhysics: fix camera track test

SVN revision: 75136

11 years agoEPhysics: camera test improved
Bruno Dilly [Fri, 10 Aug 2012 21:02:39 +0000 (21:02 +0000)]
EPhysics: camera test improved

Show how a moving background could be used with the concept of
camera.

SVN revision: 75135

11 years agoEPhysics: don't show background box on camera tests
Bruno Dilly [Fri, 10 Aug 2012 21:02:25 +0000 (21:02 +0000)]
EPhysics: don't show background box on camera tests

SVN revision: 75134

11 years agofix version in NEWS of ethumb, eio, emotion
Jihoon Kim [Fri, 10 Aug 2012 14:33:29 +0000 (14:33 +0000)]
fix version in NEWS of ethumb, eio, emotion

SVN revision: 75111

11 years agoeina: fix version in NEWS
Jihoon Kim [Fri, 10 Aug 2012 14:06:09 +0000 (14:06 +0000)]
eina: fix version in NEWS

SVN revision: 75110

11 years agoefreet: fix version in NEWS
Jihoon Kim [Fri, 10 Aug 2012 14:01:54 +0000 (14:01 +0000)]
efreet: fix version in NEWS

SVN revision: 75107

11 years agoedje: fix version in NEWS
Jihoon Kim [Fri, 10 Aug 2012 14:01:08 +0000 (14:01 +0000)]
edje: fix version in NEWS

SVN revision: 75106

11 years agoevas: fix version in NEWS
Jihoon Kim [Fri, 10 Aug 2012 14:00:21 +0000 (14:00 +0000)]
evas: fix version in NEWS

SVN revision: 75105

11 years agoecore: fix version in NEWS
Jihoon Kim [Fri, 10 Aug 2012 13:57:13 +0000 (13:57 +0000)]
ecore: fix version in NEWS

SVN revision: 75104

11 years agoEvas: When we render using the wayland engine(s), if the object we are
Christopher Michael [Fri, 10 Aug 2012 13:08:22 +0000 (13:08 +0000)]
Evas: When we render using the wayland engine(s), if the object we are
rendering is in fact the framespace clip, then do not allow it to be
clipped to itself, just skip the clip set for it.

SVN revision: 75100

11 years agofix passthrough getenv for eina mempool in ecore too.
Carsten Haitzler [Fri, 10 Aug 2012 12:50:09 +0000 (12:50 +0000)]
fix passthrough getenv for eina mempool in ecore too.

SVN revision: 75099

11 years agofix eina_mempool env var fetch for eet alloc mode.
Carsten Haitzler [Fri, 10 Aug 2012 12:42:08 +0000 (12:42 +0000)]
fix eina_mempool env var fetch for eet alloc mode.

SVN revision: 75098

11 years agoupdate more po's
Carsten Haitzler [Fri, 10 Aug 2012 11:03:50 +0000 (11:03 +0000)]
update more po's

SVN revision: 75097

11 years agomore updates for 1.7.0 alpha.
Carsten Haitzler [Fri, 10 Aug 2012 10:51:17 +0000 (10:51 +0000)]
more updates for 1.7.0 alpha.

SVN revision: 75095

11 years agomore po update for ecore.
Carsten Haitzler [Fri, 10 Aug 2012 10:50:51 +0000 (10:50 +0000)]
more po update for ecore.

SVN revision: 75094

11 years agoalpha release of 1.7 - let's roll. ALPHA!
Carsten Haitzler [Fri, 10 Aug 2012 10:37:05 +0000 (10:37 +0000)]
alpha release of 1.7 - let's roll. ALPHA!

SVN revision: 75091

11 years agoupdate po's
Carsten Haitzler [Fri, 10 Aug 2012 10:36:39 +0000 (10:36 +0000)]
update po's

SVN revision: 75090

11 years agoupdate po's
Carsten Haitzler [Fri, 10 Aug 2012 10:36:30 +0000 (10:36 +0000)]
update po's

SVN revision: 75089

11 years agotheoretically this should fix alpha dest stuff in egl-x11... it
Carsten Haitzler [Fri, 10 Aug 2012 10:32:49 +0000 (10:32 +0000)]
theoretically this should fix alpha dest stuff in egl-x11... it
always worked oddly enough :)

SVN revision: 75086

11 years agoEvas (wayland_egl): We don't have a visualinfo structure for the
Christopher Michael [Fri, 10 Aug 2012 10:08:22 +0000 (10:08 +0000)]
Evas (wayland_egl): We don't have a visualinfo structure for the
window at this point, so we cannot use it for comparison. Instead,
check the requested depth. Also fix best_depth_get function to not
return a hard-coded depth if a depth has been set already.

SVN revision: 75082

11 years agofix distcheck issue.
Carsten Haitzler [Fri, 10 Aug 2012 10:05:48 +0000 (10:05 +0000)]
fix distcheck issue.

SVN revision: 75080

11 years agosimplify unsetting/setting damage flag in ecore evas rendering to avoid altering...
Mike Blumenkrantz [Fri, 10 Aug 2012 08:45:28 +0000 (08:45 +0000)]
simplify unsetting/setting damage flag in ecore evas rendering to avoid altering previously set event mask flags

SVN revision: 75072

11 years agoonly need to avoid exposures when we're shaped
Mike Blumenkrantz [Fri, 10 Aug 2012 08:41:10 +0000 (08:41 +0000)]
only need to avoid exposures when we're shaped

SVN revision: 75071

11 years agoecore: Enable coverage builds for exsisting tests
Stefan Schmidt [Thu, 9 Aug 2012 16:19:30 +0000 (16:19 +0000)]
ecore: Enable coverage builds for exsisting tests

SVN revision: 75055

11 years agoecore: add ecore_fork_reset()
Cedric BAIL [Thu, 9 Aug 2012 12:17:47 +0000 (12:17 +0000)]
ecore: add ecore_fork_reset()

SVN revision: 75045

11 years agoeet: don't copy string around.
Cedric BAIL [Thu, 9 Aug 2012 11:03:22 +0000 (11:03 +0000)]
eet: don't copy string around.

SVN revision: 75040

11 years agoecore: correctly shutdown Ecore_Thread.
Cedric BAIL [Thu, 9 Aug 2012 10:52:48 +0000 (10:52 +0000)]
ecore: correctly shutdown Ecore_Thread.

SVN revision: 75039

11 years agoEcore_Wayland: Add keyrepeating support :) Fixes ticket #1292
Christopher Michael [Thu, 9 Aug 2012 09:57:47 +0000 (09:57 +0000)]
Ecore_Wayland: Add keyrepeating support :) Fixes ticket #1292

This commit adds support to efl applications (elm) under wayland so
that they can get key repeats. All of this is internal and does not
require the application to do anything, which means the elm test for
notepad now works with repeating keys.

SVN revision: 75037

11 years agoedje: don't compile if we have a group without a name
Michael BOUCHAUD [Thu, 9 Aug 2012 08:57:35 +0000 (08:57 +0000)]
edje: don't compile if we have a group without a name

SVN revision: 75035

11 years agoedje: improve speed of color class lookup by using an Eina_Hash.
Cedric BAIL [Thu, 9 Aug 2012 08:27:04 +0000 (08:27 +0000)]
edje: improve speed of color class lookup by using an Eina_Hash.

SVN revision: 75034

11 years agoevas Evas.h: Added more documentation.
Daniel Juyung Seo [Thu, 9 Aug 2012 05:54:22 +0000 (05:54 +0000)]
evas Evas.h: Added more documentation.

SVN revision: 75028

11 years agoEvas: Use proper variable (gc->shared is set later on)
Youness Alaoui [Wed, 8 Aug 2012 23:35:58 +0000 (23:35 +0000)]
Evas: Use proper variable (gc->shared is set later on)

SVN revision: 75022

11 years agoefreet: Fix language change
Sebastian Dransfeld [Wed, 8 Aug 2012 19:39:55 +0000 (19:39 +0000)]
efreet: Fix language change

Need to release generated file name, else we will use same filename
again when opening cache.

Also need to close cache, as a cache rebuild might not trigger cache
close if the cache in another language already exists.

SVN revision: 75020

11 years agofix efreet desktop exec to not duplicate the command n times in the
Carsten Haitzler [Wed, 8 Aug 2012 16:26:03 +0000 (16:26 +0000)]
fix efreet desktop exec to not duplicate the command n times in the
list when adding n params to a single cmd.

SVN revision: 75019

11 years agoEcore_Evas (wayland): When we maximize windows, account for framespace
Christopher Michael [Wed, 8 Aug 2012 10:09:49 +0000 (10:09 +0000)]
Ecore_Evas (wayland): When we maximize windows, account for framespace
width and height so the window does not draw outside the output
dimensions. Fixes ticket #1281

SVN revision: 75005

11 years agoEcore_Wayland: When we unmaximize windows, used the saved allocation
Christopher Michael [Wed, 8 Aug 2012 10:06:12 +0000 (10:06 +0000)]
Ecore_Wayland: When we unmaximize windows, used the saved allocation
sizes. When setting a window to be not transparent, recreate the
opaque region if needed.

SVN revision: 75004

11 years agocrit msg format warning--
Mike Blumenkrantz [Wed, 8 Aug 2012 07:46:10 +0000 (07:46 +0000)]
crit msg format warning--

SVN revision: 74996

11 years agocan't reproduce but try avoid possible alloc bug in native surface
Carsten Haitzler [Wed, 8 Aug 2012 06:25:59 +0000 (06:25 +0000)]
can't reproduce but try avoid possible alloc bug in native surface
handling.

SVN revision: 74993

11 years agomove comment to right bit.
Carsten Haitzler [Tue, 7 Aug 2012 11:17:35 +0000 (11:17 +0000)]
move comment to right bit.

SVN revision: 74981

11 years ago2 bugs.
Carsten Haitzler [Tue, 7 Aug 2012 11:15:30 +0000 (11:15 +0000)]
2 bugs.

1 textclasses were repeated per object list and (segv free same tc 2x)
2. we returend if size OR font name match - BOTH have to match to be
"the same". so && not ||

SVN revision: 74980

11 years agoevas: forgotten ChangeLog and NEWS.
Cedric BAIL [Tue, 7 Aug 2012 11:03:32 +0000 (11:03 +0000)]
evas: forgotten ChangeLog and NEWS.

Missing Vincent so much !

SVN revision: 74979

11 years agolets not segv if src is null :)
Carsten Haitzler [Tue, 7 Aug 2012 10:59:44 +0000 (10:59 +0000)]
lets not segv if src is null :)

SVN revision: 74978

11 years agoevas: don't clip the clipper.
Cedric BAIL [Tue, 7 Aug 2012 10:44:15 +0000 (10:44 +0000)]
evas: don't clip the clipper.

SVN revision: 74974

11 years agocompile test... ceeeeedric!
Carsten Haitzler [Tue, 7 Aug 2012 10:26:36 +0000 (10:26 +0000)]
compile test... ceeeeedric!

SVN revision: 74972

11 years agoevas: properly warn when linking object from different canvas.
Cedric BAIL [Tue, 7 Aug 2012 09:43:22 +0000 (09:43 +0000)]
evas: properly warn when linking object from different canvas.

SVN revision: 74968

11 years agoedje: fix memory leak when alias are present.
Cedric BAIL [Tue, 7 Aug 2012 06:20:35 +0000 (06:20 +0000)]
edje: fix memory leak when alias are present.

SVN revision: 74960

11 years agoeio: properly shutdown monitor.
Cedric BAIL [Tue, 7 Aug 2012 04:12:07 +0000 (04:12 +0000)]
eio: properly shutdown monitor.

SVN revision: 74957

11 years agoevas: remove left over options.
Cedric BAIL [Tue, 7 Aug 2012 03:48:51 +0000 (03:48 +0000)]
evas: remove left over options.

SVN revision: 74954

11 years agoecore: fix shutdown to use a different mutex for the list of running thread.
Cedric BAIL [Tue, 7 Aug 2012 03:47:14 +0000 (03:47 +0000)]
ecore: fix shutdown to use a different mutex for the list of running thread.

SVN revision: 74953

11 years agoevas evas_object_smart.c: evas_object_smart_smart_get() does the exactly same check.
Daniel Juyung Seo [Tue, 7 Aug 2012 00:57:09 +0000 (00:57 +0000)]
evas evas_object_smart.c: evas_object_smart_smart_get() does the exactly same check.

SVN revision: 74952

11 years ago[evas] Add forgotten magic checks on those iface functions.
Gustavo Lima Chaves [Mon, 6 Aug 2012 16:19:25 +0000 (16:19 +0000)]
[evas] Add forgotten magic checks on those iface functions.

SVN revision: 74948

11 years agoEcore_Wayland: Add missing __UNUSED__ to function paramateres ... Oh,
Christopher Michael [Mon, 6 Aug 2012 13:13:42 +0000 (13:13 +0000)]
Ecore_Wayland: Add missing __UNUSED__ to function paramateres ... Oh,
and also Fix Ticket #1242 where windows would resize in an incorrect
direction.

When resized an elm client application in Weston, and you grabbed the
top of the window to resize it, all resizing action was occuring from
the bottom of the window. Let's fix that ;) Now when you grab the top
of the window and resize it, it actually does resize from the top :)

SVN revision: 74933

11 years agoEcore_wayland: Add myself a FIXME note for after the "freeze".
Christopher Michael [Mon, 6 Aug 2012 12:31:05 +0000 (12:31 +0000)]
Ecore_wayland: Add myself a FIXME note for after the "freeze".

SVN revision: 74930

11 years agoedje: call edje_object_message_signal_process also on GROUP part Edje object.
Cedric BAIL [Mon, 6 Aug 2012 09:22:42 +0000 (09:22 +0000)]
edje: call edje_object_message_signal_process also on GROUP part Edje object.

SVN revision: 74916

11 years agoadd more docs for new ecore fdh function
Mike Blumenkrantz [Mon, 6 Aug 2012 06:54:21 +0000 (06:54 +0000)]
add more docs for new ecore fdh function

SVN revision: 74898

11 years agomove thinfo struct inot evas_pipe.c as its not needed elsewhere.
Carsten Haitzler [Mon, 6 Aug 2012 00:22:31 +0000 (00:22 +0000)]
move thinfo struct inot evas_pipe.c as its not needed elsewhere.

SVN revision: 74891

11 years agoadd missing fribidi flags to all engine modules.
Carsten Haitzler [Sun, 5 Aug 2012 23:59:02 +0000 (23:59 +0000)]
add missing fribidi flags to all engine modules.

SVN revision: 74889

11 years agousing DYNAMIC HINT in ecore extn make problem.
Jiyoun Park [Sun, 5 Aug 2012 13:07:28 +0000 (13:07 +0000)]
using DYNAMIC HINT in ecore extn make problem.
it maybe because of get/set pair or other bug in extn.
until fixing this, I'll block dynamic hint

SVN revision: 74887

11 years agofix ecore-evas to not ignore maximized requests in x11.
Carsten Haitzler [Sun, 5 Aug 2012 09:00:08 +0000 (09:00 +0000)]
fix ecore-evas to not ignore maximized requests in x11.

SVN revision: 74883

11 years agofix docs in ecore_x.h -= were mis-aligned to enums.
Carsten Haitzler [Sun, 5 Aug 2012 08:59:44 +0000 (08:59 +0000)]
fix docs in ecore_x.h -= were mis-aligned to enums.

SVN revision: 74882

11 years agoefreet: Fix last fix, only access theme inside if
Sebastian Dransfeld [Sat, 4 Aug 2012 17:11:18 +0000 (17:11 +0000)]
efreet: Fix last fix, only access theme inside if

SVN revision: 74879

11 years agomissing fribidi cflags in cache2.
Carsten Haitzler [Sat, 4 Aug 2012 08:03:15 +0000 (08:03 +0000)]
missing fribidi cflags in cache2.

SVN revision: 74872

11 years agodo fcfini now - it seesm to not be a problem with fc anymore
Carsten Haitzler [Sat, 4 Aug 2012 04:34:49 +0000 (04:34 +0000)]
do fcfini now - it seesm to not be a problem with fc anymore

SVN revision: 74870

11 years agomake note of leak in gnutls.
Carsten Haitzler [Sat, 4 Aug 2012 04:23:08 +0000 (04:23 +0000)]
make note of leak in gnutls.

SVN revision: 74869

11 years agoleaks--!
Carsten Haitzler [Sat, 4 Aug 2012 04:14:38 +0000 (04:14 +0000)]
leaks--!

SVN revision: 74868