Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
Also fix some trailing whitespaces in the same commit. Breaking atomic commits here.
|
|
Escaping the backslash we want to use for a line break is a really bad idea.
Introduced in f126afbba21af39c493f21424b653bb5c2e0d58f to support a crippled
echo without new line option.
The linebreak was not detected and thus the first image name used as a target.
Broke our nightly efl build with make distcheck and made me really unhappy to
while searching for the cause.
|
|
Fix touch_down and touch_up to send proper button ID (ecore_x sends 0).
Fixes Phab Ticket T468
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
Fixes Coverity CID1039498
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
Fixes Coverity CID1039358
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
Fixes Coverity CID1039356
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
calling malloc.
Fixes Coverity CID1039352
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
Should fix CID 1129611 and CID 1129612 from this week coverity scan.
|
|
|
|
Evas loader.
|
|
cw/cy are never used inside the "dosel" block, so no need to fetch
geometry and calculate difference here (already fetched below when
needed anyway).
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
Actually, we don't need to free this data here.
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
When deleting the drag, free any dupped strings.
Hopefully this fixes Phab Ticket T471. Don't know for sure as I cannot
reproduce the crash here :/
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
redraw proxy if the source is smart object and it's changed visually.
|
|
|
|
This should fix bug T439.
|
|
this fixes T229
|
|
Note that we still support building without FontConfig, so please
guard access to it.
|
|
this makes evas ane ecore_fb agree on how to address the fb device.
this fixes terminology in fb on optimus (dual gpu) setups where you may
have to declare the exact fb to use (there are 2 of them, not just
fb0) and makes things consistent at least. this also should fix T253
|
|
|
|
|
|
|
|
|
|
|
|
Other components already install XXXConfig.cmake and XXConfigVersion.cmake,
but Eeze was missing.
|
|
Reviewers: cedric, seoz, raster
Reviewed By: raster
CC: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D336
|
|
|
|
Summary:
* efl.m4: add support for xterm-256color and fix display for the bsd echo. Fix autotools issue (present on Ubuntu also, but better handled).
* doc/Makefile.am: bsd echo may not handle -n option in sh
Reviewers: cedric
CC: cedric, seoz
Differential Revision: https://phab.enlightenment.org/D329
|
|
Since we don't modify cflags, no need to save them.
|
|
|
|
true.
Fixes Phab Ticket T501
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
input_panel_enabled is True.
Part of Fix for Phab Ticket T501
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
This reduces code duplication for ecore_evas resize routines inside
wayland engines by using a common _ecore_evas_wl_common_resize
function as the resize code for both engines was the same anyway.
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
context being used.
See commit d2b647d2b378a88bee07610a7416d4257bbebbb6.
|
|
the GL X11 backend.
[Problem] When glTextureDelete is called in image_cache_flush(), it sometimes doesn't work.
[Cause] glTextureDelete is called with the wrong eglContext.
[Solution] Call eng_window_use() in image_cache_flush() and image_cache_set() to use the correct eglContext.
Change-Id: Id7ab1aaeb456be6dbc5f09cb2731ace5399a5dce
Signed-off-by: Cedric Bail <cedric.bail@samsung.com>
|
|
this won't go to changelog/news as it's mainly internal, I can't see
people wanting to use it except rare cases as edje tools.
|
|
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
them else wayland segfaults (internal wayland code does no safety
checks). Also, Fix some formatting while I am here...
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
Signed-off-by: Chris Michael <cp.michael@samsung.com>
|
|
If we do CFLAGS=${SAVE_CFLAGS}, it is important to do
SAVE_CFLAGS=${CFLAGS} first...
|
|
In evas_gl_api_ext_def.h there're calls such as:
_EVASGL_EXT_DRVNAME(EGL_KHR_image_base)
The macro is defined in evas_gl_api_ext.c as:
(strstr(glexts, #name) != NULL || strstr(glueexts, #name) != NULL)
if (_EVASGL_EXT_CHECK_SUPPORT(name)) *ext_support = 1;
But EGL_KHR_image_base is itself a macro, which is defined
in EGL/eglext.h like this:
Thus, the _EVASGL_EXT_CHECK_SUPPORT macro will unwrap into:
(strstr(glexts, "1") != NULL || strstr(glueexts, "1") != NULL)
instead of intended:
(strstr(glexts, "EGL_KHR_image_base") != NULL ||
strstr(glueexts, "EGL_KHR_image_base") != NULL)
This patch fixes this by applying stringification earlier in
_EVASGL_EXT_DRVNAME
Bugfix reported by jinhyung.jo@samsung.com
|
|
|
|
|
|
|
|
Linking to Pthread seems to be highly not portable. Look at lock.m4
macro if you want to understand the hell it is ! By following it
closely we should now have better portability than the 1.7.x release.
And of course than our alpha...
|
|
Summary:
Some functions doesn't checking the part right.
For example:
edje_edit_part_clip_to_set
edje_edit_part_restack_below
edje_edit_part_restack_above
edje_edit_part_source_set
Reviewers: cedric, seoz
Reviewed By: cedric
CC: reutskiy.v.v, cedric
Differential Revision: https://phab.enlightenment.org/D325
|
|
consistency
|