meta-openembedded/meta-efl/recipes-efl/efl/ecore/fix-ecore-fb-initialization.patch
Martin Jansa 601886e3f6 e-base: bump SRCREV and update fix-ecore-fb-initialization.patch patch for ecore_svn
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
2011-05-10 13:30:24 +02:00

30 lines
985 B
Diff

#
# The whole ecore-fb init logic is somewhat flawed; with this patch we
# get at least a working touchscreen w/ tslib again.
#
# Signed-off-by: Michael 'Mickey' Lauer <mlauer@vanille-media.de>
#
diff --git ecore.old/src/lib/ecore_fb/ecore_fb.c ecore/src/lib/ecore_fb/ecore_fb.c
index 77071e3..a4e1c5d 100644
--- ecore.old/src/lib/ecore_fb/ecore_fb.c
+++ ecore/src/lib/ecore_fb/ecore_fb.c
@@ -46,6 +46,9 @@ ecore_fb_init(const char *name __UNUSED__)
if (!ecore_fb_vt_init())
return --_ecore_fb_init_count;
+ if (!ecore_fb_ts_init())
+ return --_ecore_fb_init_count;
+
ECORE_FB_EVENT_KEY_DOWN = ecore_event_type_new();
ECORE_FB_EVENT_KEY_UP = ecore_event_type_new();
ECORE_FB_EVENT_MOUSE_BUTTON_DOWN = ecore_event_type_new();
@@ -72,6 +75,7 @@ ecore_fb_shutdown(void)
if (--_ecore_fb_init_count != 0)
return _ecore_fb_init_count;
+ ecore_fb_ts_shutdown();
ecore_fb_vt_shutdown();
return _ecore_fb_init_count;