platform/upstream/efl.git
10 years agoethumb: dbus reply message handling minor bug fix ("queue_remove" method call)
wonguk.jeong [Wed, 9 Jul 2014 12:00:40 +0000 (14:00 +0200)]
ethumb: dbus reply message handling minor bug fix ("queue_remove" method call)

Summary:
due to wrong return value checking, annoying error message is coming out.

@fix

Test Plan: terminology -> tyls in the directory contains pictures -> clear screen (clear) -> check whether error message is coming out or not

Reviewers: raster, cedric

CC: seoz, cedric
Differential Revision: https://phab.enlightenment.org/D1159

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoeolian: support for structs in eolian_show
Daniel Kolesa [Wed, 9 Jul 2014 12:06:46 +0000 (13:06 +0100)]
eolian: support for structs in eolian_show

10 years agoeolian: support for structs in eo_parser_dump
Daniel Kolesa [Wed, 9 Jul 2014 12:01:53 +0000 (13:01 +0100)]
eolian: support for structs in eo_parser_dump

10 years agoeolian: new API: eolian_type_struct_description_get
Daniel Kolesa [Wed, 9 Jul 2014 11:48:16 +0000 (12:48 +0100)]
eolian: new API: eolian_type_struct_description_get

10 years agoeolian: new API: eolian_type_struct_field_description_get
Daniel Kolesa [Wed, 9 Jul 2014 11:05:56 +0000 (12:05 +0100)]
eolian: new API: eolian_type_struct_field_description_get

10 years agoeolian: proper resource management for types/structs
Daniel Kolesa [Wed, 9 Jul 2014 10:18:21 +0000 (11:18 +0100)]
eolian: proper resource management for types/structs

Because types can have other types in each other, we need a stack of a sort to keep track of
the types for error handling. Doing it otherwise would result in potential resource leaks.

10 years agoeolian: add EOLIAN_TYPE_REGULAR_STRUCT rather than including the struct keyword in...
Daniel Kolesa [Wed, 9 Jul 2014 09:49:52 +0000 (10:49 +0100)]
eolian: add EOLIAN_TYPE_REGULAR_STRUCT rather than including the struct keyword in name field

10 years agoeolian: fix coverity defects
Daniel Kolesa [Wed, 9 Jul 2014 09:19:36 +0000 (10:19 +0100)]
eolian: fix coverity defects

10 years agoEvas gl: Add errors when using ETC1+Alpha as a normal texture
Jean-Philippe Andre [Wed, 9 Jul 2014 04:58:43 +0000 (13:58 +0900)]
Evas gl: Add errors when using ETC1+Alpha as a normal texture

10 years agoEvas gl: Fix invalid number of atlasses
Jean-Philippe Andre [Wed, 9 Jul 2014 03:36:22 +0000 (12:36 +0900)]
Evas gl: Fix invalid number of atlasses

Left-over from a local experiment where ETC1+Alpha had its own
texture pool. Not required.

10 years agoecore_evas_extn: remove redundant message sending
Thiep Ha [Wed, 9 Jul 2014 02:39:32 +0000 (11:39 +0900)]
ecore_evas_extn: remove redundant message sending

Summary:
When a client is added to socket server, socket server sends NBUF (2) times of OP_RESIZE, OP_UPDATE, OP_UPDATE_DONE messages to client. However, only one message of OP_RESIZE, OP_UPDATE, OP_UPDATE_DONE is enough.

This patch removes redundant OP_RESIZE, OP_UPDATE, OP_UPDATE_DONE sending.

Reviewers: raster, Hermet

Reviewed By: Hermet

CC: woohyun, huchi
Differential Revision: https://phab.enlightenment.org/D1141

10 years agoEvas gl: Remove non-existent filters from compile.sh
Jean-Philippe Andre [Wed, 9 Jul 2014 01:40:25 +0000 (10:40 +0900)]
Evas gl: Remove non-existent filters from compile.sh

10 years agoEvas gl: Don't use glCompressedTexSubImage2D for ETC1
Jean-Philippe Andre [Wed, 9 Jul 2014 01:09:03 +0000 (10:09 +0900)]
Evas gl: Don't use glCompressedTexSubImage2D for ETC1

Eeeeh. Not only we don't support atlasses with this RGB+A thing
yet, but ETC1 does not even support SubImage2D (according to the
current spec).

Also, fix a few typos in that same function.

10 years agoEvas gl: Fix potential memleak
Jean-Philippe Andre [Wed, 9 Jul 2014 00:41:40 +0000 (09:41 +0900)]
Evas gl: Fix potential memleak

Fixes CID 1224765.
This CID reports a potential memleak in an "assert" situation.

10 years agoEolian: Add missing break in switch
Jean-Philippe Andre [Wed, 9 Jul 2014 00:31:49 +0000 (09:31 +0900)]
Eolian: Add missing break in switch

Fixes CID 1224763.

10 years agoEvas gl: Simplify cspace matching for textures
Jean-Philippe Andre [Tue, 8 Jul 2014 08:15:42 +0000 (17:15 +0900)]
Evas gl: Simplify cspace matching for textures

Some colorspaces (ETC, S3TC, GRY, ...) don't care about the value
of BGRA support or the alpha flag. So, let's introduce the
new boolean^Wenum value MATCH_ANY ;)

Note: the compressed texture formats with alpha support have been
marked as matching both TRUE and FALSE for alpha. The images
should always have the alpha flag set to TRUE, though.
The BGRA flag really doesn't matter.

10 years agoEvas TGV: Fix compilation with BUILD_NEON
Jean-Philippe Andre [Tue, 8 Jul 2014 02:42:26 +0000 (11:42 +0900)]
Evas TGV: Fix compilation with BUILD_NEON

The TGV loader is an Evas_Loader, not part of evas itself
(eg. in cserve), so we can't use evas functions from there.
eina_cpu provides appropriate CPU features detection.

10 years agoEvas gl: Add support for ETC1+Alpha textures
Jean-Philippe Andre [Mon, 7 Jul 2014 11:14:02 +0000 (20:14 +0900)]
Evas gl: Add support for ETC1+Alpha textures

Compile-in the required shaders, add support for the
new EVAS_COLORSPACE_ETC1_ALPHA, and upload textures as RGB+A
pairs.

@feature

10 years agoEvas TGV: Add support for ETC1+Alpha
Jean-Philippe Andre [Mon, 7 Jul 2014 10:58:50 +0000 (19:58 +0900)]
Evas TGV: Add support for ETC1+Alpha

Save images with alpha in two planes:
- RGB data as ETC1
- Alpha as ETC1 (from a greyscale image)

The second plane alpha is located right after the RGB plane.

The RGBA data is not premultiplied, so that RGB can be encoded
at a better quality in ETC1. This should avoid some blockiness
artifacts that we can see in the current ETC2 mode (which supports
alpha natively). Eventually ETC2 should also support non
premultiplied data for a better encoding quality.

This patch implements the saver and the loader.

@feature

10 years agoEvas Loader: Introduce colorspace ETC1+Alpha
Jean-Philippe Andre [Mon, 7 Jul 2014 07:10:37 +0000 (16:10 +0900)]
Evas Loader: Introduce colorspace ETC1+Alpha

ETC1 does not support Alpha natively, but it can be emulated using
two planes: RGB ETC1 and a grey-scale image encoded in ETC1.

10 years agoEvas gl: Add shaders for RGB+Alpha mode
Jean-Philippe Andre [Fri, 4 Jul 2014 09:07:34 +0000 (18:07 +0900)]
Evas gl: Add shaders for RGB+Alpha mode

These shaders take two textures as input and sample RGB from
texture 1 and alpha from texture 2. This is the non-premultiplied
version, so RGB' = RGB*A.

This includes only the GLSL code.

10 years agoEvas gl: Fix path resolution in compile.sh
Jean-Philippe Andre [Mon, 7 Jul 2014 06:42:34 +0000 (15:42 +0900)]
Evas gl: Fix path resolution in compile.sh

Let's make compile.sh work from anywhere (not just from its
containing directory). Also fix problem with calling make-c-str.sh
without setting PATH.

10 years agoevas-engine-drm: Fix invalid variable check
Chris Michael [Tue, 8 Jul 2014 16:32:58 +0000 (12:32 -0400)]
evas-engine-drm: Fix invalid variable check

We need to check if evas_outbuf_setup Failed and did not return a new
ob for us to work with...so this if check was invalid

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
10 years agoevas-3d: Add missing EINA_UNUSED to unused function parameter
Chris Michael [Tue, 8 Jul 2014 16:23:37 +0000 (12:23 -0400)]
evas-3d: Add missing EINA_UNUSED to unused function parameter

Signed-off-by: Chris Michael <cp.michael@samsung.com>
10 years agoevas-engine-drm: Fix formatting
Chris Michael [Tue, 8 Jul 2014 16:17:37 +0000 (12:17 -0400)]
evas-engine-drm: Fix formatting

Signed-off-by: Chris Michael <cp.michael@samsung.com>
10 years agoevas-engine-drm: Fix drm engine breakage from Frenchie
Chris Michael [Tue, 8 Jul 2014 16:16:07 +0000 (12:16 -0400)]
evas-engine-drm: Fix drm engine breakage from Frenchie

We need to have the drm fd & tty setup Prior to creating the output
buffer so that the output buffer knows what drm card to use

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
10 years agoRevert "evas/drm: Make use of ecore_drm for opening DRM device"
Chris Michael [Tue, 8 Jul 2014 16:08:14 +0000 (12:08 -0400)]
Revert "evas/drm: Make use of ecore_drm for opening DRM device"

This reverts commit 31ad73efa96b6c4c2ab01366a0897e6fadad48e4.

Conflicts:
src/modules/evas/engines/drm/evas_engine.c

Revert this commit as these functions are needed to run evas engine
standalone (expedite) on drm

10 years agoRevert "evas/drm: Remove obsolete tty open function"
Chris Michael [Tue, 8 Jul 2014 16:05:13 +0000 (12:05 -0400)]
Revert "evas/drm: Remove obsolete tty open function"

This reverts commit 1db13194a23e8ed0afa01474031cc8e2d4fc4049.

Revert this commit as this is needed to run the evas engine in
standalone situations like expedite.

10 years agoeolian: fix base_type_get (only allow for pointers)
Daniel Kolesa [Tue, 8 Jul 2014 15:56:13 +0000 (16:56 +0100)]
eolian: fix base_type_get (only allow for pointers)

10 years agoeolian: support for structs in c_type_get
Daniel Kolesa [Tue, 8 Jul 2014 15:54:22 +0000 (16:54 +0100)]
eolian: support for structs in c_type_get

10 years agoeolian: better struct support including an API for by-name lookup
Daniel Kolesa [Tue, 8 Jul 2014 15:42:33 +0000 (16:42 +0100)]
eolian: better struct support including an API for by-name lookup

10 years agoeolian: new API for struct types
Daniel Kolesa [Tue, 8 Jul 2014 15:17:44 +0000 (16:17 +0100)]
eolian: new API for struct types

This commit adds new Eolian API and proper parsing support for struct types.
Structs can be named (allowed in global context, like typedefs, and in typedefs)
and unnamed (allowed as fields of other structs). This extends the existing type
API to support structs. This is incomplete for now - I still gotta add a way to
query global structs besides other things.

@feature

10 years agoeolian: initial struct parsing
Daniel Kolesa [Tue, 8 Jul 2014 14:44:42 +0000 (15:44 +0100)]
eolian: initial struct parsing

10 years agoeolian: check struct name properly
Daniel Kolesa [Tue, 8 Jul 2014 14:10:56 +0000 (15:10 +0100)]
eolian: check struct name properly

10 years agoeolian: preparation for struct support
Daniel Kolesa [Tue, 8 Jul 2014 14:02:36 +0000 (15:02 +0100)]
eolian: preparation for struct support

10 years agoeolian/generator: add asterisk on inout too
Daniel Kolesa [Tue, 8 Jul 2014 13:15:36 +0000 (14:15 +0100)]
eolian/generator: add asterisk on inout too

10 years agoethumb: support ETHUMB_THUMB_ORIENT_ORIGINAL without libexif
wonguk.jeong [Tue, 8 Jul 2014 12:31:02 +0000 (14:31 +0200)]
ethumb: support ETHUMB_THUMB_ORIENT_ORIGINAL without libexif

Summary:
Since there is infra to support EXIF orientation in the loaders, we don't need to use libexif explicitely.
(Currently jpeg loader support EXIF orientaion fully.)

@fix

Test Plan: generate thumbnail of "Light_exif_*.jpg" in efl/src/tests/evas/image/ -> check whether the image is rotated properly or not

Reviewers: raster, cedric

CC: seoz, cedric
Differential Revision: https://phab.enlightenment.org/D1142

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoeolian: @own -> own
Daniel Kolesa [Tue, 8 Jul 2014 12:34:25 +0000 (13:34 +0100)]
eolian: @own -> own

10 years agoevas: fix bogus update rect, that's what I call black magic.
Cedric BAIL [Tue, 8 Jul 2014 12:26:24 +0000 (14:26 +0200)]
evas: fix bogus update rect, that's what I call black magic.

10 years agoconfigure.ac: Fix typo in DDS loader definition
Jean-Philippe Andre [Tue, 8 Jul 2014 09:29:04 +0000 (18:29 +0900)]
configure.ac: Fix typo in DDS loader definition

Eh, the power of copy and paste

10 years agoevas: fix use of already freed data use.
Cedric BAIL [Tue, 8 Jul 2014 08:59:58 +0000 (10:59 +0200)]
evas: fix use of already freed data use.

10 years agoRevert "configure: Add dl to edje libs"
Stefan Schmidt [Tue, 8 Jul 2014 08:08:57 +0000 (10:08 +0200)]
Revert "configure: Add dl to edje libs"

This reverts commit ff5a57aafd6e383ce258b31c7eb3875aa3b03093.

Edje is not using dlopen directly but luajit is. Seems some distros are missing
dlopen for there luajit package. Nothing we should workaround here.

10 years agoevas sample code - remove makefile.am
taehyub [Tue, 8 Jul 2014 06:01:27 +0000 (15:01 +0900)]
evas sample code - remove makefile.am

Summary: evas gl sample

Test Plan: cd efl/ > make examples > cd examples/evas > ./evas_gl

Reviewers: Hermet

Reviewed By: Hermet

CC: cedric
Differential Revision: https://phab.enlightenment.org/D1130

10 years agodisable multisense when pulse is disabled too
Carsten Haitzler (Rasterman) [Tue, 8 Jul 2014 06:43:06 +0000 (15:43 +0900)]
disable multisense when pulse is disabled too

also.. change "i know what i am doing" option string to "aba"... :)
keep people on their toes.

10 years agofix eldbus warnings
Carsten Haitzler (Rasterman) [Tue, 8 Jul 2014 03:45:44 +0000 (12:45 +0900)]
fix eldbus warnings

10 years agoeldbus: Fixes ABI break in Eldbus_Method with appended void* data
Felipe Magno de Almeida [Tue, 8 Jul 2014 02:57:08 +0000 (11:57 +0900)]
eldbus: Fixes ABI break in Eldbus_Method with appended void* data

Summary:
Removed the void* data variable from Eldbus_Method and created another
struct that has the void* data and added an array of Eldbus_Method2 in
the descriptor for the Eldbus_Service_Interface_Desc and making the
appropriate modifications in the implementation to use both
descriptions.

Reviewers: cedric, stefan_schmidt, raster

CC: cedric
Maniphest Tasks: T1408

Differential Revision: https://phab.enlightenment.org/D1139

10 years agoevas: Evas_3D - add fog effect. add two API function for enable and disable fog effec...
Dmytro Dadyka [Mon, 7 Jul 2014 17:26:44 +0000 (19:26 +0200)]
evas: Evas_3D - add fog effect. add two API function for enable and disable fog effect for given mesh.

Reviewers: Hermet, raster, cedric

CC: cedric
Differential Revision: https://phab.enlightenment.org/D936

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoethumb: fix setup related API problem
wonguk.jeong [Mon, 7 Jul 2014 17:10:58 +0000 (19:10 +0200)]
ethumb: fix setup related API problem

Summary:
setup related API was not working at all due to below problems

1. dbus type signature is wrong. it's array of dictionary not array of struct
2. since quality value was assigned to compress value, there was a problem during saving png image (out of bound)
3. orientation_set API was not working except NONE and ORIGINAL

@fix

Test Plan: make thumbnail by using elm_thumb_add -> orientation set to 90 CCW -> check whether image is rotated properly or not

Reviewers: raster, cedric

CC: seoz, cedric
Differential Revision: https://phab.enlightenment.org/D1138

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoedje: Edje_Edit - add edje_edit_part_item_row/col_span functions.
Mykyta Biliavskyi [Mon, 7 Jul 2014 17:04:52 +0000 (19:04 +0200)]
edje: Edje_Edit - add edje_edit_part_item_row/col_span functions.

Summary:
Getter and setter of span for box/table items.
Following functions were added:
   edje_edit_part_item_span_set
   edje_edit_part_item_span_get

Reviewers: raster, seoz, cedric, Hermet, reutskiy.v.v

CC: cedric, reutskiy.v.v
Differential Revision: https://phab.enlightenment.org/D1074

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoedje: Edje_Edit - fix Documentation generation error's and warning's
Vorobiov Vitalii [Mon, 7 Jul 2014 17:01:16 +0000 (19:01 +0200)]
edje: Edje_Edit - fix Documentation generation error's and warning's

Summary:
Fixing errors and warning with Edje_Edit documentation,
for example, adding documentation for enum and structs,
adding missed @see, @params, @returns etc.

@fix

Reviewers: Hermet, seoz, cedric, raster

CC: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D1107

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoedje: Edje_Edit - add edje_edit_part_item_spread functions.
Vorobiov Vitalii [Mon, 7 Jul 2014 16:55:18 +0000 (18:55 +0200)]
edje: Edje_Edit - add edje_edit_part_item_spread functions.

Summary:
Add four main functions to deal with TABLE or BOX items:
- edje_edit_part_item_spread_w_get
- edje_edit_part_item_spread_w_set
- edje_edit_part_item_spread_h_get
- edje_edit_part_item_spread_h_set

@feature

Reviewers: cedric, Hermet, seoz, raster

CC: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D1104

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoevas: fix wayland_shm to report buffer state as expected by software generic backend.
Cedric BAIL [Mon, 7 Jul 2014 16:26:59 +0000 (18:26 +0200)]
evas: fix wayland_shm to report buffer state as expected by software generic backend.

10 years agoeolian: new API: eolian_system_directory_scan, use it
Daniel Kolesa [Mon, 7 Jul 2014 15:46:12 +0000 (16:46 +0100)]
eolian: new API: eolian_system_directory_scan, use it

10 years agoecore-x - add x screensaver activate/reset calls
Carsten Haitzler (Rasterman) [Mon, 7 Jul 2014 14:33:29 +0000 (23:33 +0900)]
ecore-x - add x screensaver activate/reset calls

10 years agoeolian: do not use string for attrs
Daniel Kolesa [Mon, 7 Jul 2014 14:14:00 +0000 (15:14 +0100)]
eolian: do not use string for attrs

10 years agoedje: Edje_Edit - Change names of two functions to match the other sounds api
Kateryna Fesyna [Mon, 7 Jul 2014 13:34:51 +0000 (15:34 +0200)]
edje: Edje_Edit - Change names of two functions to match the other sounds api

Summary:
This commit provides small cleanup for sounds api.
The next functions are renamed:
edje_edit_sounds_samples_list_get() -> edje_edit_sound_samples_list_get()
edje_edit_sounds_tones_list_get() -> edje_edit_sound_tones_list_get()

Reviewers: cedric, Hermet, seoz, raster, reutskiy.v.v

CC: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D1134

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoedje: Edje_Edit - add since marks to the doxygen comments of new sounds api.
Kateryna Fesyna [Mon, 7 Jul 2014 13:29:06 +0000 (15:29 +0200)]
edje: Edje_Edit - add since marks to the doxygen comments of new sounds api.

Summary:
This commit provides small cleanup for sounds api.
Also the "since" and "@c" marks are added to the doxygen comments of new sounds api functions.

Reviewers: cedric, Hermet, seoz, raster, reutskiy.v.v

CC: reutskiy.v.v, cedric, abyomi0
Differential Revision: https://phab.enlightenment.org/D1093

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoedje: Edje_Edit - add edje_edit_part_item_weight functions.
Vorobiov Vitalii [Mon, 7 Jul 2014 13:23:50 +0000 (15:23 +0200)]
edje: Edje_Edit - add edje_edit_part_item_weight functions.

Summary:
Add four main functions to deal with TABLE or BOX items:
- edje_edit_part_item_weight_x_get
- edje_edit_part_item_weight_x_set
- edje_edit_part_item_weight_y_get
- edje_edit_part_item_weight_y_set

@feature

Reviewers: cedric, raster, seoz, Hermet

CC: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D1131

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoeolian: scan directories recursively
Daniel Kolesa [Mon, 7 Jul 2014 13:22:41 +0000 (14:22 +0100)]
eolian: scan directories recursively

10 years agoeolian_cxx: add missing file for make dist.
Cedric BAIL [Mon, 7 Jul 2014 12:44:08 +0000 (14:44 +0200)]
eolian_cxx: add missing file for make dist.

10 years agoedje: factorize call to eo_do to reduce eo_do_start cost.
Cedric BAIL [Mon, 7 Jul 2014 11:43:42 +0000 (13:43 +0200)]
edje: factorize call to eo_do to reduce eo_do_start cost.

10 years agoedje: fix typos.
Cedric BAIL [Mon, 7 Jul 2014 11:05:06 +0000 (13:05 +0200)]
edje: fix typos.

10 years agoeina - fixed typo
ChunEon Park [Mon, 7 Jul 2014 11:22:06 +0000 (20:22 +0900)]
eina - fixed typo

10 years agoevas/gl - removed MASK ramains.
ChunEon Park [Mon, 7 Jul 2014 08:06:42 +0000 (17:06 +0900)]
evas/gl - removed MASK ramains.

10 years agoefl build - fix multisense to actually be turned on again
Carsten Haitzler (Rasterman) [Mon, 7 Jul 2014 07:29:40 +0000 (16:29 +0900)]
efl build - fix multisense to actually be turned on again

10 years agoedje: reduce overhead of setting text and color class in theme.
Cedric BAIL [Sun, 6 Jul 2014 20:50:32 +0000 (22:50 +0200)]
edje: reduce overhead of setting text and color class in theme.

This reduce by 10% some elementary tests case that was provided
by some crazy french.

10 years agoevas: gl_x11 - add missing function pointer glsym_eglSwapBuffersWithDamage
Gwanglim Lee [Sun, 6 Jul 2014 18:19:28 +0000 (20:19 +0200)]
evas: gl_x11 - add missing function pointer glsym_eglSwapBuffersWithDamage

Summary: added missing global function pointer to gl_x11

Test Plan: N/A

Reviewers: cedric, raster, devilhorns

CC: cedric
Differential Revision: https://phab.enlightenment.org/D1128

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoevas: jpeg loader - add tests for EXIF flip, transpose, transverse.
Wonguk Jeong [Sun, 6 Jul 2014 17:59:44 +0000 (19:59 +0200)]
evas: jpeg loader - add tests for EXIF flip, transpose, transverse.

Summary:
Previously, there was rotation test only. (90 CW, 180 CW, 90 CCW)
Flip vertically, flip horizontally, transpose, transverse tests are added

D1126 will make added tests be passed.

Reviewers: raster, cedric, jpeg

CC: seoz, cedric
Differential Revision: https://phab.enlightenment.org/D1127

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoevas: jpeg loader - support flip, transpose, transverse
Wonguk Jeong [Sun, 6 Jul 2014 17:58:47 +0000 (19:58 +0200)]
evas: jpeg loader - support flip, transpose, transverse

Summary:
Previously, jpeg image loader support rotation (90°, 180°, 270°) only.
this patch is about supporting flip(vertical, horizontal), transpose, transverse

@feature

Test Plan: I'm going to make tests in src/tests

Reviewers: cedric, raster, jpeg

CC: seoz, cedric
Differential Revision: https://phab.enlightenment.org/D1126

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoecore-drm: Shutdown ecore_event on udev error.
Chris Michael [Sun, 6 Jul 2014 16:58:57 +0000 (12:58 -0400)]
ecore-drm: Shutdown ecore_event on udev error.

Since we have already called ecore_event_init prior to using any udev
functions, if udev fails for some reason or another, we should also
shutdown ecore_event subsystem.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
10 years agoevas-software-generic: Fix formatting
Chris Michael [Sun, 6 Jul 2014 15:07:30 +0000 (11:07 -0400)]
evas-software-generic: Fix formatting

Signed-off-by: Chris Michael <cp.michael@samsung.com>
10 years agoevas: remove multiple definition of glsym_eglSwapBuffersWithDamage.
Cedric BAIL [Sun, 6 Jul 2014 16:18:29 +0000 (18:18 +0200)]
evas: remove multiple definition of glsym_eglSwapBuffersWithDamage.

10 years agoevas: fix warning due to change in software generic backend.
Cedric BAIL [Sun, 6 Jul 2014 16:16:45 +0000 (18:16 +0200)]
evas: fix warning due to change in software generic backend.

10 years agoevas: fix build break with GLES.
Cedric BAIL [Sun, 6 Jul 2014 16:16:10 +0000 (18:16 +0200)]
evas: fix build break with GLES.

10 years agoevas: gl_common fix make dist
Alex-P. Natsios [Sun, 6 Jul 2014 11:50:40 +0000 (13:50 +0200)]
evas: gl_common fix make dist

Summary:
This fixes a breakage in make dist.
There were a few stale entries from the recent removal of shader masking
code.

@fix

Thanks to Simotek for reporting

Reviewers: raster, cedric, Hermet

CC: simotek, cedric
Differential Revision: https://phab.enlightenment.org/D1125

Signed-off-by: Cedric BAIL <c.bail@partner.samsung.com>
10 years agoeo: make parent_set a O(1) operation instead of O(n).
Cedric BAIL [Sun, 6 Jul 2014 11:15:21 +0000 (13:15 +0200)]
eo: make parent_set a O(1) operation instead of O(n).

This does impact performance quite significantly when you have a lot
of children.

10 years agoevas: missing shared declaration.
Cedric BAIL [Sat, 5 Jul 2014 19:03:36 +0000 (21:03 +0200)]
evas: missing shared declaration.

10 years agoevas: missed replacement.
Cedric BAIL [Sat, 5 Jul 2014 11:13:43 +0000 (13:13 +0200)]
evas: missed replacement.

10 years agoevas: make partial update extention compile for every one in gl_x11 backend.
Cedric BAIL [Sat, 5 Jul 2014 10:50:21 +0000 (12:50 +0200)]
evas: make partial update extention compile for every one in gl_x11 backend.

10 years agoeolian-cxx: Removed Wshadow warnings.
Savio Sena [Thu, 3 Jul 2014 22:35:40 +0000 (19:35 -0300)]
eolian-cxx: Removed Wshadow warnings.

Summary:
Removes Wshadow warnings by prepending/appending radices to
the target variables and parameters.

Reviewers: felipealmeida

CC: cedric
Differential Revision: https://phab.enlightenment.org/D1118

10 years agoevas: update Windows backend to use the software generic interface.
Cedric BAIL [Fri, 4 Jul 2014 14:07:52 +0000 (16:07 +0200)]
evas: update Windows backend to use the software generic interface.

10 years agoeolian: warning fix
Daniel Kolesa [Fri, 4 Jul 2014 13:51:05 +0000 (14:51 +0100)]
eolian: warning fix

10 years agoMerge branch 'devs/cedric/refactoring_engine'
Cedric BAIL [Fri, 4 Jul 2014 13:12:34 +0000 (15:12 +0200)]
Merge branch 'devs/cedric/refactoring_engine'

This branch is a first toward small and simpler backend for evas. It should help
improve our portability and reduce our maintenance. Next step is to introduce
a gl_generic backend.

10 years agoevas: migrate GL_X11 to use more infrastructure of software_generic.
Cedric BAIL [Fri, 4 Jul 2014 11:51:32 +0000 (13:51 +0200)]
evas: migrate GL_X11 to use more infrastructure of software_generic.

10 years agoevas: add more infrastructure to software_generic backend to be ready for GL_X11...
Cedric BAIL [Fri, 4 Jul 2014 11:51:03 +0000 (13:51 +0200)]
evas: add more infrastructure to software_generic backend to be ready for GL_X11 migration.

10 years agoevas: rename Evas_GL_X11_Window to Outbuf.
Cedric BAIL [Tue, 1 Jul 2014 06:43:27 +0000 (08:43 +0200)]
evas: rename Evas_GL_X11_Window to Outbuf.

10 years agoevas: add support for merging redraw area across multiple frame with different logic.
Cedric BAIL [Sun, 29 Jun 2014 17:28:44 +0000 (19:28 +0200)]
evas: add support for merging redraw area across multiple frame with different logic.

10 years agoevas: remove unused include that can lead to problematic include on some platform.
Cedric BAIL [Fri, 27 Jun 2014 10:36:46 +0000 (12:36 +0200)]
evas: remove unused include that can lead to problematic include on some platform.

10 years agoevas: make DDraw backend use more software generic.
Cedric BAIL [Fri, 27 Jun 2014 10:00:09 +0000 (12:00 +0200)]
evas: make DDraw backend use more software generic.

10 years agoevas: Make GDI backend use more software generic infrastructure.
Cedric BAIL [Fri, 27 Jun 2014 09:19:17 +0000 (11:19 +0200)]
evas: Make GDI backend use more software generic infrastructure.

10 years agoevas: simplify Wayland_SHM backend to use software generic infrastructure.
Cedric BAIL [Fri, 27 Jun 2014 08:16:36 +0000 (10:16 +0200)]
evas: simplify Wayland_SHM backend to use software generic infrastructure.

10 years agoevas: simplify DRM backend to use Software generic infrastructure more.
Cedric BAIL [Wed, 25 Jun 2014 08:47:08 +0000 (10:47 +0200)]
evas: simplify DRM backend to use Software generic infrastructure more.

10 years agoedje_edit: adding code generation for map functions
Vorobiov Vitalii [Fri, 4 Jul 2014 12:25:18 +0000 (21:25 +0900)]
edje_edit: adding code generation for map functions

Summary:
After changing edj file with edje_edit functions which deals
with map, it require to regenerate source code including map block
with all changes.

Reviewers: cedric, Hermet, seoz, raster

Reviewed By: Hermet

CC: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D1105

10 years agoedje_edit: fixing -Wshadow compile warning with edje_edit_access_set
Vorobiov Vitalii [Fri, 4 Jul 2014 12:22:27 +0000 (21:22 +0900)]
edje_edit: fixing -Wshadow compile warning with edje_edit_access_set

Summary:
There was -Wshadow compile warning with edje_edit_access_set
and one of it's param called access.
Changed it's name to avoid such annoying warning

Reviewers: Hermet, raster, cedric, seoz

Reviewed By: Hermet

CC: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D1106

10 years agoedje_edit: adding @since 1.11
Vorobiov Vitalii [Fri, 4 Jul 2014 12:11:56 +0000 (21:11 +0900)]
edje_edit: adding @since 1.11

Summary:
Adding @since 1.11 for all edje_edit function which
were added after 1.10 release and before 1.11.

@fix

Reviewers: cedric, Hermet, seoz, raster

Reviewed By: Hermet

CC: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D1108

10 years agoevas/gl - removed redundant shader masking code.
ChunEon Park [Fri, 4 Jul 2014 12:10:20 +0000 (21:10 +0900)]
evas/gl - removed redundant shader masking code.

10 years agofix xcb as well as xlib - match altgr conflict fix
Carsten Haitzler (Rasterman) [Fri, 4 Jul 2014 09:07:15 +0000 (18:07 +0900)]
fix xcb as well as xlib - match altgr conflict fix

this matches c21120ec965a97a1b30356c7defbd2a25ca6d905 conflict fix
section (not the rest). T1273 fix

10 years agothis fixes crazy french altgr setups that confuse binding masks
Carsten Haitzler (Rasterman) [Fri, 4 Jul 2014 09:02:10 +0000 (18:02 +0900)]
this fixes crazy french altgr setups that confuse binding masks

this fixes T1273 - @fix

10 years agoevas - gl common - fix drop of image on cache hit in gl engine images
Carsten Haitzler (Rasterman) [Fri, 4 Jul 2014 03:26:16 +0000 (12:26 +0900)]
evas - gl common - fix drop of image on cache hit in gl engine images

@fix - this fixes a leak (reference count leak)

10 years agoeolian: have eolian_all_classes_list_get instead of eolian_class_names_list_get
Daniel Kolesa [Thu, 3 Jul 2014 21:12:09 +0000 (22:12 +0100)]
eolian: have eolian_all_classes_list_get instead of eolian_class_names_list_get