Nick Holland [Tue, 7 Jul 2015 11:19:14 +0000 (12:19 +0100)]
Boost removal from performance server
Change-Id: Ia02b511bfc33e101b2eccbed57cc71fe67d6a0b6
Adeel Kazmi [Mon, 13 Jul 2015 10:09:32 +0000 (11:09 +0100)]
(Window) Update class-name at initialisation
Change-Id: I71ad4d83c488c7b39731aa0d62434839662f454c
Andrew Cox [Tue, 16 Jun 2015 18:42:42 +0000 (19:42 +0100)]
Shader binary synchronous simplified IO
Change-Id: I4894729a48527bcaa7b710d616eeeacdc7f7c8b3
Signed-off-by: Andrew Cox <andrew.cox@partner.samsung.com>
Kimmo Hoikka [Fri, 10 Jul 2015 16:32:33 +0000 (09:32 -0700)]
Merge "Fix for deadlock in PixmapRenderSurface" into devel/master
Kimmo Hoikka [Fri, 10 Jul 2015 16:06:56 +0000 (09:06 -0700)]
Merge "Refactor dali key files" into devel/master
David Fumanal [Fri, 10 Jul 2015 14:14:57 +0000 (15:14 +0100)]
Fix for deadlock in PixmapRenderSurface
Change-Id: I902d5efc30772dbb4d5555de560aa390ab2271e0
Kimmo Hoikka [Fri, 10 Jul 2015 14:47:22 +0000 (07:47 -0700)]
Merge "Automated test fix for framebuffer creation" into devel/master
David Fumanal [Tue, 7 Jul 2015 13:08:32 +0000 (14:08 +0100)]
Automated test fix for framebuffer creation
Change-Id: I8a16311b3bb98cb3813da3f6f2d9693f98ffe09a
Kimmo Hoikka [Thu, 9 Jul 2015 17:40:21 +0000 (18:40 +0100)]
Remove de-funct Bullet dynamics plugin
Change-Id: Iee50462d991b726262246fc15b2e5388d2ec5591
Yoonsang Lee [Thu, 11 Jun 2015 07:48:24 +0000 (16:48 +0900)]
Refactor dali key files
- Change type of dali key definition from extern const KEY
to enum Key to remove unnecessary exported symbols.
- Seperate platform-specfic key mapping table (key-mapping-xxx.cpp)
and common key functions (key-impl.cpp)
- Add Dali::Internal::Adaptor::KeyLookup::GetKeyName()
- Definition macros for key names are deprecated in utilX,
so use key name string instead of macro in key-mapping-xxx.cpp.
- Apply some changed key names (XF86Back, XF86Home, XF86Menu)
- Remove old-named key variables - DALI_KEY_SEND, END, SELECT
- Add key code mapping entries for wayland
Change-Id: Ic1939e11f2c775880a50d674686e3b1de6413aec
Kimmo Hoikka [Tue, 7 Jul 2015 15:20:48 +0000 (16:20 +0100)]
remove deadlock from pixmap render surface, mutex lock is being held while waiting for notification
Change-Id: Idcabfee4a7dc2dabf1f9a8f86d8960f9ae8f8187
Adeel Kazmi [Thu, 9 Jul 2015 16:10:40 +0000 (09:10 -0700)]
Merge "DALi Version 1.0.48" into devel/master
Lee Morgan [Thu, 9 Jul 2015 14:03:35 +0000 (15:03 +0100)]
DALi Version 1.0.48
Change-Id: I5ff908d337952a1145afcf01a95f7fb834c2e8b8
Adeel Kazmi [Wed, 8 Jul 2015 10:47:14 +0000 (11:47 +0100)]
(Window) Set class-name before Map
Change-Id: I37f6d6014ac73f84a4abc96efa6090114290817e
Kimmo Hoikka [Tue, 7 Jul 2015 10:26:31 +0000 (11:26 +0100)]
Multithreaded wait test case for ConditionalWait
Change-Id: I46ea1fd4baa2fef92aa9271b1e5edadbe63d3c20
Adeel Kazmi [Tue, 7 Jul 2015 14:16:53 +0000 (07:16 -0700)]
Merge "libuv support for dali-adaptor for running in Node.JS" into devel/master
Nick Holland [Tue, 23 Jun 2015 07:32:26 +0000 (08:32 +0100)]
libuv support for dali-adaptor for running in Node.JS
Highlights:
libuv support for timers, callbacks, file descriptor monitoring
pure X11 support for touch / key events
Exposed SceneCreated(), SetViewMode() and SetStereoBase in adaptor.h
Change-Id: I62030ef76337c568852f07d0ef6418e708fee9a3
Victor Cebollada [Tue, 23 Jun 2015 14:37:06 +0000 (15:37 +0100)]
Fix Klocwork issues.
Change-Id: I91b0212c694b879a6b0aae959028ac1b30996048
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Adeel Kazmi [Fri, 3 Jul 2015 14:05:26 +0000 (07:05 -0700)]
Merge "Boost removal from pixmap" into devel/master
David Fumanal [Fri, 3 Jul 2015 10:58:29 +0000 (11:58 +0100)]
Boost removal from pixmap
Change-Id: I431e6bdc4efee3f62a36be739b7da6d32e91a4f1
Kimmo Hoikka [Wed, 1 Jul 2015 11:10:37 +0000 (12:10 +0100)]
Harmonize test failures
Change-Id: I5ddf3174abfdbf25b6a0183e40e10bb70bc091ea
David Fumanal [Thu, 2 Jul 2015 12:49:22 +0000 (13:49 +0100)]
Boost removal:Singleton service with __thread
Change-Id: I38379c02cd44e9f68621485076e6c175d451f110
Nick Holland [Wed, 1 Jul 2015 08:17:51 +0000 (09:17 +0100)]
Fix segfault with remote image download and tidy up
Segfault caused by
When downloading a remote image that does not exist:
curl_easy_getinfo returning -1 for content length.
-1 gets static_cast to size_t == SIZE_MAX
SIZE_MAX passed to Dali::Vector::Reserve() as the capacity
This overflows the vector capacity calculation, ending up with only
15 bytes allocated.
It then seg faults trying to write the vector meta data which is
16 bytes long.
-----------
Tidy up
Removed memory buffer that was created to store the HTTP request header, but was
never used.
Removed all curl code from resource-thread-image.cpp and made a generic
download file function in a separate file. We can now re-used that function for
other file types.
Added lazy creation of threads. Previously we would always create local and remote threads
for images.
Change-Id: I377e2967ac18b3e115411e370e5b85385ce23632
Adeel Kazmi [Wed, 1 Jul 2015 17:02:58 +0000 (10:02 -0700)]
Merge "Replace boost::thread with pthread in render,update & vsync thread" into devel/master
Adeel Kazmi [Wed, 1 Jul 2015 16:26:05 +0000 (09:26 -0700)]
Merge "Prevent Tap UP event occuring at end of Longpress" into devel/master
Adeel Kazmi [Wed, 1 Jul 2015 15:46:44 +0000 (08:46 -0700)]
Merge "ConditionalWait to replace boost conditional variable usage" into devel/master
Agnelo Vaz [Wed, 1 Jul 2015 14:38:25 +0000 (15:38 +0100)]
Prevent Tap UP event occuring at end of Longpress
Change-Id: Ic50adb215648f52816a83c5f5c9d3b17a54c7e08
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
Adeel Kazmi [Wed, 1 Jul 2015 13:23:36 +0000 (06:23 -0700)]
Merge "DALi Version 1.0.47" into devel/master
Ferran Sole [Wed, 1 Jul 2015 13:18:31 +0000 (14:18 +0100)]
DALi Version 1.0.47
Change-Id: If1e25d924934cc65e4ffe845b31faf22fb3e8dbf
Xiangyin Ma [Tue, 30 Jun 2015 14:56:58 +0000 (15:56 +0100)]
Replace boost::thread with pthread in render,update & vsync thread
Change-Id: I3f6259cd6174b39fcf00f5e0b7b09e62f9f2cb71
Kimmo Hoikka [Tue, 30 Jun 2015 15:00:41 +0000 (16:00 +0100)]
ConditionalWait to replace boost conditional variable usage
Change-Id: I337a7c0577056bf40e4a3cddd1cc100f6d5af7af
Nick Holland [Tue, 30 Jun 2015 14:37:04 +0000 (15:37 +0100)]
Idle callback boost removal and tidy up
Change-Id: Ib31b8be4838226030d6dcaba1661898c4cd43e0e
taeyoon [Mon, 29 Jun 2015 06:44:37 +0000 (15:44 +0900)]
Fix a prevent issue - Resource leak
- Resource leak in GetDATAStoragePath()
Change-Id: If55d99124d6fa8559bd573ad7464fb44e990ac72
HyunJu Shin [Mon, 29 Jun 2015 01:29:56 +0000 (18:29 -0700)]
Merge "Fix to enable eldbus" into devel/master
Francisco Santos [Fri, 26 Jun 2015 14:23:23 +0000 (15:23 +0100)]
Merge branch 'devel/new_mesh' into devel/master
Change-Id: I4e6bc90b0175f34392a59dca76abc7fe5f6dd929
Francisco Santos [Fri, 26 Jun 2015 14:01:32 +0000 (15:01 +0100)]
Merge branch 'devel/master' into devel/new_mesh
Conflicts:
build/tizen/adaptor/Makefile.am
Change-Id: I5a99833c0d29907510de2b25813f091052f1f9c5
Heeyong Song [Fri, 26 Jun 2015 06:44:15 +0000 (15:44 +0900)]
Fix to enable eldbus
Change-Id: I3982377c48ce4a94be24064e8e0747241f45f7a1
Adeel Kazmi [Thu, 25 Jun 2015 15:30:08 +0000 (08:30 -0700)]
Merge "Add support for new accessibility actions" into devel/master
Francisco Santos [Thu, 25 Jun 2015 13:52:15 +0000 (14:52 +0100)]
Merge branch 'devel/master' into devel/new_mesh
Conflicts:
build/tizen/configure.ac
Change-Id: If7a3942fd3f79cfa01b808345875bf121bdb9898
taeyoon [Thu, 25 Jun 2015 07:53:18 +0000 (16:53 +0900)]
Move window-extension.h from public-api to devel-api
Change-Id: I3294247348eb4316285d2f350c7924c76645821e
Adeel Kazmi [Wed, 24 Jun 2015 14:59:25 +0000 (07:59 -0700)]
Merge "DALi Version 1.0.46" into devel/master
Chu Hoang [Wed, 24 Jun 2015 14:54:29 +0000 (15:54 +0100)]
DALi Version 1.0.46
Change-Id: I3c34c9581ade654934bbe62dbfd12077e61560d7
Yoonsang Lee [Tue, 23 Jun 2015 06:08:10 +0000 (15:08 +0900)]
Fix Tizen build break - change gles20 to glesv2
Change-Id: I26dfd5a0bdb0573292cb34bbe4a3c540ec2aeee9
Kimmo Hoikka [Mon, 22 Jun 2015 17:00:46 +0000 (10:00 -0700)]
Merge "Fix prevent issue - resource leak" into devel/master
Kimmo Hoikka [Mon, 22 Jun 2015 16:39:43 +0000 (09:39 -0700)]
Merge "Fixed issue with double-tap gestures" into devel/master
Paul Wisbey [Mon, 22 Jun 2015 13:39:59 +0000 (14:39 +0100)]
Fixed issue with double-tap gestures
Change-Id: I9b936ad29454d86fac32216b3210390729bff7d5
Adeel Kazmi [Mon, 22 Jun 2015 15:04:35 +0000 (08:04 -0700)]
Merge "Change Object profiler to use Environment Options, harmonize environment variable name (now: DALI_OBJECT_PROFILER_INTERVAL)" into devel/master
Kimmo Hoikka [Mon, 22 Jun 2015 14:32:37 +0000 (15:32 +0100)]
Fix FPS tracking through environment variable (and make if a bit more lightweight and usable)
Change-Id: Idc04f90cf088aab1704c0d242aabab7c4222f90d
taeyoon [Mon, 22 Jun 2015 13:39:48 +0000 (22:39 +0900)]
Fix prevent issue - resource leak
Change-Id: Ib095425b6fbd5a47777a9011cc7ddd10f6892ec0
Adeel Kazmi [Mon, 22 Jun 2015 13:25:40 +0000 (14:25 +0100)]
Ensure libunibreak does not export symbols
CXXFLAGS are being set but they're not picked up when compiling C files, therefore we have to set
CFLAGS in adaptor as well.
Change-Id: I807192f9de3bdde9ea2822673b6ddd6ba577f9ed
Kimmo Hoikka [Mon, 22 Jun 2015 12:47:56 +0000 (13:47 +0100)]
Change Object profiler to use Environment Options, harmonize environment variable name (now: DALI_OBJECT_PROFILER_INTERVAL)
Change-Id: I095e84289d50c977668507fc9894fccb6b860079
Francisco Santos [Mon, 22 Jun 2015 10:45:14 +0000 (11:45 +0100)]
Update profiling of objects with new mesh objects.
Change-Id: Ic256ff18235930c2ba0e7dd22b183baa8269c188
Richard Huang [Fri, 12 Jun 2015 15:31:42 +0000 (16:31 +0100)]
Add support for new accessibility actions
1. Rename AccessibilityManager to AccessibilityAdaptor
2. Added support of getting accessibility messages from dbus
3. Added support for new accessibility actions
Change-Id: I96f2a1bbb6ee92e71dc1cc010a6551f6042568e9
Agnelo Vaz [Fri, 19 Jun 2015 10:42:50 +0000 (11:42 +0100)]
Fix Clipboard to return 0 when has no items
Change-Id: If7ce529fa7dfe3ca0ef71a82a7663bf70dff80f1
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
Andrew Cox [Thu, 18 Jun 2015 15:18:11 +0000 (16:18 +0100)]
Removed traces of ImageAttributes and dead old JPEG loader
Change-Id: I67e4cc0ec822d8930e18bdae04c6d9d7fb85de25
Signed-off-by: Andrew Cox <andrew.cox@partner.samsung.com>
Adeel Kazmi [Thu, 18 Jun 2015 11:18:21 +0000 (04:18 -0700)]
Merge "DALi Version 1.0.45" into devel/master
Xiangyin Ma [Thu, 18 Jun 2015 11:14:19 +0000 (12:14 +0100)]
DALi Version 1.0.45
Change-Id: Icce7e1b7c5ae035cd76e440da89cbeeb565b4ea2
Heeyong Song [Thu, 11 Jun 2015 01:57:32 +0000 (10:57 +0900)]
Fix prevent issue - Dereference null return value
Change-Id: If062d1ac9e2d229cc6c175e02c5841305a725d56
Kimmo Hoikka [Wed, 17 Jun 2015 16:39:15 +0000 (09:39 -0700)]
Merge "Removed Setters from EnvironmentOptions & added WindowClassName as an environment variable" into devel/master
Adeel Kazmi [Wed, 17 Jun 2015 15:37:37 +0000 (08:37 -0700)]
Merge "Change Application to use NotifySceneCreated from Adaptor" into devel/master
Victor Cebollada [Mon, 15 Jun 2015 08:30:22 +0000 (09:30 +0100)]
Add the 'Carriage Return' character to the IsNewParagraph().
Change-Id: I01c559eca64c69611759b9e7b601fb2287cdb4a4
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Adeel Kazmi [Wed, 17 Jun 2015 10:54:31 +0000 (11:54 +0100)]
Removed Setters from EnvironmentOptions & added WindowClassName as an environment variable
Change-Id: I18d078328dffa6cb63f282237bf5b21204ca6e1a
Kimmo Hoikka [Wed, 17 Jun 2015 09:55:37 +0000 (02:55 -0700)]
Merge "Use environment option to set the name of the window" into devel/master
Kimmo Hoikka [Tue, 16 Jun 2015 15:59:40 +0000 (16:59 +0100)]
Change Application to use NotifySceneCreated from Adaptor
Change-Id: Iff5b4cb1c08ed15d2fa73c0a69958c496d1c1853
Kimmo Hoikka [Tue, 16 Jun 2015 15:02:44 +0000 (08:02 -0700)]
Merge "Add API to notify adaptor that scene has been created" into devel/master
Adeel Kazmi [Tue, 16 Jun 2015 14:36:04 +0000 (15:36 +0100)]
Use environment option to set the name of the window
Change-Id: I58fde9c92fc5612a3897bf943451d4619a70d57b
Adeel Kazmi [Tue, 16 Jun 2015 13:38:09 +0000 (14:38 +0100)]
Window initial size is set as per environment variables
Problem: EnvironmentOptions class was created by adaptor. The window class gets created before
environment options are parsed by the adaptor and some window managers ignore resize
requests.
Solution: Create EnvironmentOptions in Application class and pass them to Adaptor. Adaptor still
has the ability to create the class if it is not passed the options.
Change-Id: I634ebc999049fcc5e09116cbfa3a6e03f4a52563
Jonghyun Ho [Fri, 12 Jun 2015 02:28:59 +0000 (11:28 +0900)]
Add API to notify adaptor that scene has been created
Change-Id: I26c3336868f1ac02f19ecc813039799f343fd031
Kimmo Hoikka [Mon, 15 Jun 2015 16:22:55 +0000 (09:22 -0700)]
Merge "Add API to get the current state of TTS player" into devel/master
daemyung jang [Fri, 12 Jun 2015 03:03:38 +0000 (12:03 +0900)]
Add device smack rule and fix build erros when using mobile spec.
Change-Id: I801bcb1cc29d80142286ee5c89151a610300915e
Richard Huang [Fri, 12 Jun 2015 15:16:23 +0000 (16:16 +0100)]
Add API to get the current state of TTS player
Change-Id: Idce0225976a6b2cf791761755cd0831e3d1ba054
suhyung Eom [Thu, 11 Jun 2015 10:49:35 +0000 (19:49 +0900)]
Fixed prevent defect
< Prevent message >
Dereference null return value (NULL_RETURNS)
Signed-off-by: suhyung Eom <suhyung.eom@samsung.com>
Change-Id: I18968d836de30f0b20ba5a7cb670f451c86dbd01
Kimmo Hoikka [Thu, 11 Jun 2015 16:28:19 +0000 (09:28 -0700)]
Merge "Move tts-player.h from devel-api to public-api" into devel/master
Adeel Kazmi [Thu, 11 Jun 2015 10:19:30 +0000 (03:19 -0700)]
Merge "DALi Version 1.0.44" into devel/master
Tom Robinson [Thu, 11 Jun 2015 09:46:09 +0000 (10:46 +0100)]
DALi Version 1.0.44
Change-Id: Ia4f5fedef21892bf2fc8e88c5287c0146edff275
Victor Cebollada [Thu, 11 Jun 2015 08:19:33 +0000 (09:19 +0100)]
COMMON script added.
Change-Id: Ic809fdb911b4fcab2e8eec2beeb05732be603a18
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Richard Huang [Wed, 10 Jun 2015 16:29:08 +0000 (17:29 +0100)]
Move tts-player.h from devel-api to public-api
Change-Id: Id6896886de17078ceaebb84e33e9559bfd90027a
Adeel Kazmi [Wed, 10 Jun 2015 10:10:40 +0000 (11:10 +0100)]
Fix Tizen x86 & ARM build break
dali-adaptor.spec is for:
http://download.tizen.org/releases/daily/tizen/common/latest/repos/ia32-wayland
ONLY
Change-Id: Ifab34480d176cda3b94406b0b5d0b8b559241b00
suhyung Eom [Tue, 9 Jun 2015 09:17:27 +0000 (18:17 +0900)]
Fix build error caused by appFw modification
Signed-off-by: suhyung Eom <suhyung.eom@samsung.com>
Change-Id: I3280a309c32da03ab56fe99be1471fea73874b14
Francisco Santos [Thu, 4 Jun 2015 16:31:19 +0000 (17:31 +0100)]
Merge branch 'tizen' into devel/new_mesh
Change-Id: I38c536fc0ba528d76aefd1809b76aac840f291ed
Kimmo Hoikka [Thu, 4 Jun 2015 10:44:57 +0000 (03:44 -0700)]
Merge "DALi Version 1.0.43" into tizen
Richard Huang [Thu, 4 Jun 2015 10:06:05 +0000 (11:06 +0100)]
DALi Version 1.0.43
Change-Id: Ia58646c3c336c4cf22d2a455fa0315985d067083
daemyung jang [Thu, 4 Jun 2015 04:42:26 +0000 (13:42 +0900)]
Add devel-api include path into dali-integration.pc.in
Change-Id: Ie40f9c0701729c3521b8d2b8b7f4928c90536ec3
Adeel Kazmi [Wed, 3 Jun 2015 10:59:13 +0000 (11:59 +0100)]
(AutomatedTests) Synchronise with core & remove boost & installed headers for coverage
Change-Id: I044f617e5898ed19e7468625853617efe9b54799
Lee Morgan [Tue, 2 Jun 2015 14:01:54 +0000 (15:01 +0100)]
Added boost requirement for devel package
Now its removed from toolkit
Change-Id: If22bae28fa15cb218e881c20fc4d35353020a9a7
Kimmo Hoikka [Fri, 29 May 2015 17:38:47 +0000 (10:38 -0700)]
Merge "Changes for std::vector removal from api" into tizen
Kimmo Hoikka [Fri, 29 May 2015 15:44:58 +0000 (08:44 -0700)]
Merge "Support moving of native-image-interface and image-operations to public-api" into tizen
Lee Morgan [Fri, 29 May 2015 13:52:41 +0000 (14:52 +0100)]
Changes for std::vector removal from api
Change-Id: I7f0750c3d5c33b4129ca89dd35674430c60214ca
Heeyong Song [Fri, 22 May 2015 04:37:08 +0000 (13:37 +0900)]
Change WheelEvent
- Replace MouseWheelEvent with WheelEvent
- Add custom wheel event type
Change-Id: Ie56513a13b2b6d512e151223d1c47623b4b055b8
Nick Holland [Fri, 29 May 2015 10:32:15 +0000 (11:32 +0100)]
Support moving of native-image-interface and image-operations to public-api
Change-Id: I46f03e922dcb2c90dfeef27e68c45f7a403e8513
Adeel Kazmi [Fri, 29 May 2015 08:01:15 +0000 (09:01 +0100)]
DALi Version 1.0.42
Change-Id: I7284c36eca7c9da52ee1c885797295190ed8749f
Adeel Kazmi [Thu, 28 May 2015 16:39:21 +0000 (17:39 +0100)]
(AutomatedTests) Added negative application test cases
Function coverage for Application up to 100%
Change-Id: I3fb370548a23af77d85a4b534adf9e37a428ab25
Francisco Santos [Thu, 28 May 2015 13:33:40 +0000 (14:33 +0100)]
Print a compreensive string for EGL errors.
Change-Id: Ib5b61ff30cc43de1a497ecd3b5a4f344b6fc0426
Victor Cebollada [Fri, 22 May 2015 14:17:05 +0000 (15:17 +0100)]
Scripts added.
Cyrillic, Georgian, Greek and Armenian.
Change-Id: Ie8ca2ea98fc142ba0a4ce727264f91b1374d526c
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Richard Huang [Wed, 27 May 2015 15:10:33 +0000 (16:10 +0100)]
Update UTC for Window
Change-Id: Ic1d0a819fe804f26e7cd21d28cabab0fdbfb2961
Agnelo Vaz [Fri, 22 May 2015 13:23:24 +0000 (14:23 +0100)]
VirtualKeyboard API for Settings
Change-Id: Ic16296cf6fe0e8f4b9c67d353dcc12495451c685
Signed-off-by: Agnelo Vaz <agnelo.vaz@samsung.com>
Adeel Kazmi [Fri, 22 May 2015 17:40:09 +0000 (18:40 +0100)]
(AutomatedTests) Added Application & Timer tests
Change-Id: I1a1ebfca2187178f125904a834c2b91d147117b6
Ferran Sole [Fri, 22 May 2015 18:03:40 +0000 (19:03 +0100)]
Added test case for PixmapImage
Change-Id: I4841f2a5ad783fc559f3371940ef7272450c24f5
Kimmo Hoikka [Fri, 22 May 2015 18:24:29 +0000 (11:24 -0700)]
Merge "Add test case for Window" into tizen
Kimmo Hoikka [Fri, 22 May 2015 18:16:28 +0000 (11:16 -0700)]
Merge "(Orientation) Move to devel-api" into tizen