David Steele [Fri, 23 Oct 2020 14:34:44 +0000 (15:34 +0100)]
Updated patch-coverage.pl script
Change-Id: If0fba483209b65be565ca51188da2da75dd931c7
adam.b [Fri, 23 Oct 2020 10:45:07 +0000 (11:45 +0100)]
DALi Version 1.9.35
Change-Id: I018d8d3a992b9c3c1baf18b37b6a14fbe8bdde9d
David Steele [Thu, 22 Oct 2020 17:04:06 +0000 (18:04 +0100)]
Updated patch-coverage script
Change-Id: Ia0be18e97a46aafffb85b786e77dea00d60969bd
Adeel Kazmi [Wed, 21 Oct 2020 20:53:40 +0000 (20:53 +0000)]
Merge "Reduced Cyclomatic Complexity of pixel-manipulation functions" into devel/master
Adeel Kazmi [Thu, 15 Oct 2020 20:41:52 +0000 (21:41 +0100)]
Reduced Cyclomatic Complexity of pixel-manipulation functions
Change-Id: Ic2ed1ecdc18a85240aebab45068e2c01e1764cf5
Heeyong Song [Tue, 20 Oct 2020 09:16:07 +0000 (09:16 +0000)]
Merge "Use separated semaphore in CombinedUpdateRenderController" into devel/master
Richard Huang [Fri, 16 Oct 2020 10:31:11 +0000 (11:31 +0100)]
DALi Version 1.9.34
Change-Id: Ic34b5854f2398178c88f66263ebffd725b0563b0
Heeyong Song [Fri, 16 Oct 2020 07:38:10 +0000 (16:38 +0900)]
Use separated semaphore in CombinedUpdateRenderController
Change-Id: I2f611e1e62b9c3b69949c25fc25d41f241e6a67b
Adeel Kazmi [Mon, 12 Oct 2020 19:47:12 +0000 (20:47 +0100)]
Fix doxygen comments
Change-Id: I7bdcff9d299c040596de66aea7d3cb1a592a09ef
György Straub [Fri, 9 Oct 2020 13:05:56 +0000 (14:05 +0100)]
DALi Version 1.9.33
Change-Id: I087cde0d2455554f2c897682fc267c85c5bcf1af
Heeyong Song [Wed, 23 Sep 2020 15:01:55 +0000 (00:01 +0900)]
Refactor VectorImageRenderer
Change-Id: I92a3f759d00f904c7594f94a33176f7e633b13b1
Heeyong Song [Sun, 4 Oct 2020 23:55:27 +0000 (23:55 +0000)]
Merge "Add uint8_t type ReadFile method" into devel/master
Cheng-Shiun Tsai [Fri, 2 Oct 2020 09:46:37 +0000 (10:46 +0100)]
DALi Version 1.9.32
Change-Id: I6b304ce322441137e263a696c9ec05a370211777
Joogab Yun [Wed, 16 Sep 2020 03:01:33 +0000 (12:01 +0900)]
check EGL_KHR_partial_update and EGL_KHR_swap_buffers_with_damage for partial rendering
Change-Id: I296740afc72c6f54352cf39c3eca8d08f57f2a79
Adeel Kazmi [Tue, 29 Sep 2020 14:59:32 +0000 (14:59 +0000)]
Merge "(Environment Options) Reduce cyclomatic complexity of ParseEnvironmentOptions" into devel/master
Adeel Kazmi [Mon, 28 Sep 2020 17:40:21 +0000 (18:40 +0100)]
(Loader ICO) Separate out LoadBitmapFromIco to reduce cyclomatic complexity
Change-Id: I944faf12fbe9e5a8e3f06df73e7190d333166d6b
Adeel Kazmi [Mon, 28 Sep 2020 17:42:00 +0000 (18:42 +0100)]
(Environment Options) Reduce cyclomatic complexity of ParseEnvironmentOptions
Change-Id: I30a53de77cdd31c0d68ed993465dbd6164656dd9
Heeyong Song [Tue, 29 Sep 2020 03:14:40 +0000 (12:14 +0900)]
Add uint8_t type ReadFile method
Change-Id: Ib7127b7c2a5550aeb71c2c7ad3bfba0a37cd0a56
Adeel Kazmi [Mon, 28 Sep 2020 15:51:35 +0000 (16:51 +0100)]
(Cairo Renderer) Separate RenderTextCairo into several functions to reduce cyclomatic complexity
Change-Id: I217eb4d38c7404f85354135822ff1d3aa8825a7e
Adeel Kazmi [Fri, 25 Sep 2020 14:08:06 +0000 (14:08 +0000)]
Merge "Refactor script.cpp" into devel/master
Adeel Kazmi [Fri, 25 Sep 2020 10:58:01 +0000 (11:58 +0100)]
DALi Version 1.9.31
Change-Id: I5ec148d2eb6425f6b89d514f80a1c0a771c44658
Adeel Kazmi [Thu, 17 Sep 2020 21:53:44 +0000 (22:53 +0100)]
Refactor script.cpp
Change-Id: I6225aa9b38948d3dcfe3a9524bee3b5e60bb3a2e
Adeel Kazmi [Thu, 24 Sep 2020 16:40:57 +0000 (17:40 +0100)]
Add test for TextAbstraction::GetCharacterScript
Change-Id: I1875fb1e28d19bbc5fa648a03dea577ffcd86854
Daekwang Ryu [Thu, 24 Sep 2020 02:50:21 +0000 (02:50 +0000)]
Merge "Add OffscreenApplication" into devel/master
Adeel Kazmi [Wed, 23 Sep 2020 12:03:19 +0000 (12:03 +0000)]
Merge "Remove unused enumeration types of ButtonAction" into devel/master
Cheng-Shiun Tsai [Fri, 10 Jul 2020 08:49:19 +0000 (09:49 +0100)]
Avoid execessive Pushback when Dali::Vector<char> used as file buffer container
dali-adator file reader uses Dali::Vector<char,true> as the container for data buffer.
However, Dali::Vector::Resize always initialize the element by doing PushBack().
Considering now you need to read a file of 1MB,
Resize() would lead to PushBack() of one byte X one million times,
so that it becomes a vector of 1MB, this is unnecessary waste of CPU time.
We need another method which simply allocates the buffer without initialize the value.
It will help use cases such as MCD Avatar3D / AREmoji where there are a lot of resource files
Depends on https://review.tizen.org/gerrit/#/c/platform/core/uifw/dali-core/+/238235/
Change-Id: I560ec768a61e3b41c88775397a87f692f3342d54
Seoyeon Kim [Wed, 23 Sep 2020 02:56:22 +0000 (11:56 +0900)]
Remove unused enumeration types of ButtonAction
- Some enumeration types are not used anymore : Previous, Unspecified, None
So, to match the types of ecore_imf, removed unused types.
Change-Id: If4df3fb3f0916faeeb189b9e2954d9cc0309fb00
Signed-off-by: Seoyeon Kim <seoyeon2.kim@samsung.com>
Daekwang Ryu [Thu, 20 Aug 2020 05:54:52 +0000 (14:54 +0900)]
Add OffscreenApplication
OffscreenApplication allows to make an application with a OffscreenWindow.
You don't have to create a on-screen window.
Change-Id: Ic418dce92ff1bf79f4be0a2ecb46e68784dbebe4
JunsuChoi [Mon, 27 Jul 2020 11:54:06 +0000 (20:54 +0900)]
Introduce VectorImageRenderer
The SvgVisual of dali-toolkit will use this instead of nanovg.
And this will use dali-extension which is using tizenvg.
Change-Id: Ic9dc1c68cf3ab266036848b32276b72920c33a71
Wonsik Jung [Tue, 22 Sep 2020 01:25:39 +0000 (01:25 +0000)]
Merge "Add GlWindow" into devel/master
Adeel Kazmi [Mon, 21 Sep 2020 18:37:15 +0000 (19:37 +0100)]
(Ubuntu) Temporarily disable freeing of pixmap as it crashes on EFL 1.24.0
Change-Id: Iaf9106f390472910d16b4ecd7d7bc2c038c26730
David Steele [Fri, 18 Sep 2020 10:35:08 +0000 (11:35 +0100)]
DALi Version 1.9.30
Change-Id: I4473bea67464891ba779ff69748c6185374f9a0e
Wonsik Jung [Fri, 4 Sep 2020 07:20:28 +0000 (16:20 +0900)]
Add GlWindow
Add GlWindow feature that is to support the native GLES application in DALi/NUI.
It has the interface to setup simple egl config.
In addition, three callback fuctions are initialize, rendering and terminate.
The functions are called on idler.
Change-Id: I306bf22e8126bf02af2d5316480aa695989b26c2
Sunghyun Kim [Mon, 14 Sep 2020 06:07:26 +0000 (15:07 +0900)]
Fix memory leak issue
The pointer used in system_settings_get_value_string() should be free
Change-Id: Ic0b3b32cc1d1912fdebfda839ac14314b3333408
adam.b [Fri, 11 Sep 2020 11:56:28 +0000 (12:56 +0100)]
DALi Version 1.9.29
Change-Id: I86cf1aa3adcf17dfe3351b95114bcb130976968e
David Steele [Mon, 7 Sep 2020 17:12:11 +0000 (18:12 +0100)]
Formatting automated-tests
Formatted autotests, fixed up issues with header sorting.
Change-Id: Id68298bb3e587431623415c3dfd402adb227493f
David Steele [Thu, 10 Sep 2020 09:57:21 +0000 (10:57 +0100)]
Formatting API
Change-Id: I4e3171810f80fa1e10e3f5fbf51815e2110a38a6
David Steele [Mon, 7 Sep 2020 14:58:39 +0000 (15:58 +0100)]
Adding clang format stylesheet
Adding format script to check formatting before committing.
Change-Id: I8dde01f25a9cc69d43be8e5ca17ca838eacf75c3
György Straub [Wed, 9 Sep 2020 12:43:23 +0000 (13:43 +0100)]
Adding 'override', removing 'virtual' from overriding functions' declarations in tests.
Change-Id: I7cea49aea8832d99ff3e7a8d5165707e88a91dac
Signed-off-by: György Straub <g.straub@partner.samsung.com>
György Straub [Tue, 8 Sep 2020 06:21:46 +0000 (07:21 +0100)]
Fixes by clang-tidy.
- forward declaration struct / class mismatches;
- file modes (-x);
Change-Id: I771c105efa7c65b13ffae0e5a854a31e0717944e
Signed-off-by: György Straub <g.straub@partner.samsung.com>
adam.b [Tue, 8 Sep 2020 14:46:04 +0000 (15:46 +0100)]
Added 'virtual' to GetLogContextFunction() in trace manager
Change-Id: I9206244553ac57404a359d8fe330e240de86e5d1
Adeel Kazmi [Tue, 8 Sep 2020 10:56:59 +0000 (10:56 +0000)]
Merge "Changed 'virtual' function override declarations to 'override' in automated-tests." into devel/master
Adeel Kazmi [Tue, 8 Sep 2020 08:30:04 +0000 (08:30 +0000)]
Merge "Changed 'virtual' function override declarations to 'override'." into devel/master
Adeel Kazmi [Tue, 8 Sep 2020 08:20:23 +0000 (08:20 +0000)]
Merge "Render once when redraw request event is comming" into devel/master
György Straub [Fri, 4 Sep 2020 16:06:19 +0000 (17:06 +0100)]
Changed 'virtual' function override declarations to 'override'.
Change-Id: If1f4eeb2708709e1f62fb03d204aad27018e8b2d
Signed-off-by: György Straub <g.straub@partner.samsung.com>
seungho [Mon, 7 Sep 2020 02:39:32 +0000 (11:39 +0900)]
Render once when redraw request event is comming
Change-Id: Idc96b8c7a742be15ff8de30a7b37de373b576992
Signed-off-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
Heeyong Song [Tue, 8 Sep 2020 02:22:01 +0000 (02:22 +0000)]
Merge "Support multiple surfaces for partial update" into devel/master
Heeyong Song [Tue, 8 Sep 2020 02:21:55 +0000 (02:21 +0000)]
Merge "(Partial update) Fix surface damage area" into devel/master
György Straub [Fri, 4 Sep 2020 15:47:20 +0000 (16:47 +0100)]
Changed 'virtual' function override declarations to 'override' in automated-tests.
Change-Id: I36e68de23820a1d796a07c084643514b1439fc9c
Signed-off-by: György Straub <g.straub@partner.samsung.com>
David Steele [Fri, 4 Sep 2020 10:53:08 +0000 (10:53 +0000)]
Merge "DALi Version 1.9.28" into devel/master
Richard Huang [Fri, 4 Sep 2020 10:15:45 +0000 (11:15 +0100)]
DALi Version 1.9.28
Change-Id: I0b87470c4b461eec0564b723e40f87a29e570d31
Daekwang Ryu [Fri, 4 Sep 2020 03:27:01 +0000 (12:27 +0900)]
Revert "Add OffscreenApplication"
This reverts commit
b7769b595b297a4b371bbc09e01c99a47b7e5bf6.
Daekwang Ryu [Thu, 20 Aug 2020 05:54:52 +0000 (14:54 +0900)]
Add OffscreenApplication
OffscreenApplication allows to make an application with a OffscreenWindow.
You don't have to create a on-screen window.
Change-Id: I33f70af964fa54036a2e9946be866f116e637853
Heeyong Song [Fri, 21 Aug 2020 09:02:30 +0000 (18:02 +0900)]
Support multiple surfaces for partial update
Change-Id: I0880ce461407c48bc0290f73fd1bc8824f5e46a8
Adeel Kazmi [Wed, 2 Sep 2020 20:09:33 +0000 (20:09 +0000)]
Merge "Renamed TouchSignal to TouchedSignal" into devel/master
Adeel Kazmi [Wed, 2 Sep 2020 13:47:03 +0000 (14:47 +0100)]
Renamed TouchSignal to TouchedSignal
Change-Id: I7e230727e8e2b86363e87ec0518d62db6ad6729c
David Steele [Wed, 2 Sep 2020 14:51:23 +0000 (15:51 +0100)]
Removing Configuration::ContextLoss APIs and enum
Change-Id: I41e08e1e4b4055f91cc381a9da69e07df7b3aeca
György Straub [Fri, 28 Aug 2020 12:20:30 +0000 (13:20 +0100)]
Renaming of enum values for coding standards compliance.
Change-Id: I33856473015291aee43b3c584742fe52313f7db1
Signed-off-by: György Straub <g.straub@partner.samsung.com>
Heeyong Song [Thu, 20 Aug 2020 08:20:51 +0000 (17:20 +0900)]
(Partial update) Fix surface damage area
- eglSwapBuffersWithDamageKHR doesn't need to consider the buffer age.
The surface damage for frame n is the difference between frame n and frame (n-1).
- Remove SetDamageAreas
Change-Id: I470fafe564d7e9ef8cef1c2347c452fc0f1f8413
Richard Huang [Fri, 28 Aug 2020 15:29:39 +0000 (16:29 +0100)]
Move TouchPoint to Devel API
Change-Id: I900cef18f3b9cca7b18d4b282c1f53647a350bd7
Adeel Kazmi [Fri, 28 Aug 2020 10:33:07 +0000 (10:33 +0000)]
Merge "DALi Version 1.9.27" into devel/master
Victor Cebollada [Fri, 28 Aug 2020 10:11:37 +0000 (11:11 +0100)]
DALi Version 1.9.27
Change-Id: I3344cccc3c7dd8d08f797810bb9a4d92dd83d9fa
joogab yun [Fri, 28 Aug 2020 00:49:38 +0000 (00:49 +0000)]
Merge "New window is set to the layout direction of tyhe default window." into devel/master
Adeel Kazmi [Thu, 27 Aug 2020 20:11:26 +0000 (20:11 +0000)]
Merge "Updated after const -> constexpr changes" into devel/master
Adeel Kazmi [Thu, 27 Aug 2020 17:27:18 +0000 (17:27 +0000)]
Merge "Renamed KeyEvent enum values to comply with coding standards." into devel/master
David Steele [Thu, 27 Aug 2020 13:45:39 +0000 (14:45 +0100)]
Updated after const -> constexpr changes
Change-Id: I31ac3d23b1e31e4e9c49e4f25da4f79f39897b30
Paul Wisbey [Thu, 27 Aug 2020 15:05:10 +0000 (15:05 +0000)]
Merge "[Windows version] WindowImpl cleanup, fixes and improvements." into devel/master
György Straub [Thu, 27 Aug 2020 07:40:30 +0000 (08:40 +0100)]
Renamed KeyEvent enum values to comply with coding standards.
Change-Id: I6945e76f5a764d2ade5b26e95e5e3285d4eac0b4
Signed-off-by: György Straub <g.straub@partner.samsung.com>
Joogab Yun [Thu, 27 Aug 2020 04:34:57 +0000 (13:34 +0900)]
New window is set to the layout direction of tyhe default window.
Change-Id: Ic81ecf8134e77b002c7f8ebee1780242e8f8e61c
György Straub [Tue, 25 Aug 2020 15:27:41 +0000 (16:27 +0100)]
Removed the deprecated Dali::Internal::Adaptor::Window::ResizedSignal().
Change-Id: I75006579a5ff52a88d5945e0826d83256b30573f
Signed-off-by: György Straub <g.straub@partner.samsung.com>
Adeel Kazmi [Wed, 26 Aug 2020 10:03:16 +0000 (10:03 +0000)]
Merge "Fix build errors for MS-Windows after KeyEvent class pimpling patch." into devel/master
Adeel Kazmi [Wed, 26 Aug 2020 09:59:45 +0000 (09:59 +0000)]
Merge "windows: Store the window handle in a pointer sized type" into devel/master
Adeel Kazmi [Wed, 26 Aug 2020 09:54:22 +0000 (09:54 +0000)]
Merge "platform-implement-win.cpp: Fix invalid pointer cast in 64 bits systems" into devel/master
Victor Cebollada [Wed, 26 Aug 2020 08:42:06 +0000 (09:42 +0100)]
Fix build errors for MS-Windows after KeyEvent class pimpling patch.
Change-Id: I14db2cfdda393b034251a32d69abb27e091931c9
Signed-off-by: Victor Cebollada <v.cebollada@samsung.com>
Adeel Kazmi [Tue, 25 Aug 2020 18:25:23 +0000 (18:25 +0000)]
Merge "Updated test files in line with dali-core" into devel/master
Richard Huang [Tue, 25 Aug 2020 09:33:48 +0000 (10:33 +0100)]
KeyEvent class pimpling
Change-Id: I422b474a472a6f8f5f268c0c1d07b5651940b7a0
György Straub [Mon, 24 Aug 2020 10:33:35 +0000 (11:33 +0100)]
[Windows version] WindowImpl cleanup, fixes and improvements.
- renamed the wordy WindowsPlatformImplementation namespace to simply
WindowsPlatform;
- Made the invariant windowStyle data member, and the edge width / height
getters that depend on it, into static consts;
- WindowImpl::CreateHwnd() is now static, and no longer takes the name
of the window class;
- The window class is only registered once, and then shared (instead of
registering one for every window, since everything about it - except
the name - was shared);
- The window class is unregistered once there are no windows left;
- WindowImpl unregisters itself from the event handlers when destroyed,
or a new HWND was set;
- removed redundant static keyword from constant;
- renamed mHwndToListeners to fit the convention, and moved it into
an anonymous namespace;
Change-Id: Ic3e6c614539cc939080bf785ffd7d2443ea1703e
Signed-off-by: György Straub <g.straub@partner.samsung.com>
David Steele [Tue, 25 Aug 2020 14:07:47 +0000 (15:07 +0100)]
Updated test files in line with dali-core
Change-Id: I6c147d768225205879f3a9793ff6361d69421899
Wander Lairson Costa [Wed, 22 Jul 2020 12:59:32 +0000 (09:59 -0300)]
platform-implement-win.cpp: Fix invalid pointer cast in 64 bits systems
The ID returned by the function SetTimer is actually a pointer to a data
structure storing the timer information. Originally the return type of
the function was int, which is 32 bits, but in Windows 64 bits it is not
enough to store a pointer value.
We convert the timer ID type to the proper type intptr_t, which is an
integral type guaranteed to be big enough to hold a pointer value.
Change-Id: I207b8e2538d73d583ed6df1192af0fbbdb6bed96
Wander Lairson Costa [Thu, 23 Jul 2020 15:57:54 +0000 (12:57 -0300)]
windows: Store the window handle in a pointer sized type
Under the hoods, HWND is a typedef to a void *, which is can't be stored
in the int in 64 bits systems.
Change-Id: I580170eaabf6508abc8bbca7395da98233164d9b
David Steele [Fri, 21 Aug 2020 15:35:42 +0000 (15:35 +0000)]
Merge "Updated test headers in line with dali-core" into devel/master
Adeel Kazmi [Fri, 21 Aug 2020 11:46:17 +0000 (11:46 +0000)]
Merge "Fix capture issue of to capture sub-scene." into devel/master
David Steele [Wed, 19 Aug 2020 18:06:08 +0000 (19:06 +0100)]
Updated test headers in line with dali-core
Change-Id: I07deb248469b79b4c765d9e93040142362d936e5
Adeel Kazmi [Fri, 21 Aug 2020 10:54:36 +0000 (10:54 +0000)]
Merge "Remove deprecated and unused ActionButton" into devel/master
Adeel Kazmi [Fri, 21 Aug 2020 09:20:07 +0000 (10:20 +0100)]
Remove deprecated and unused ActionButton
Change-Id: I60c72525a5edc4e4e4ba46482be34e46222e9cd2
Adeel Kazmi [Fri, 21 Aug 2020 08:37:44 +0000 (08:37 +0000)]
Merge "Remove unused parameters" into devel/master
David Steele [Fri, 21 Aug 2020 08:06:28 +0000 (08:06 +0000)]
Merge "DALi Version 1.9.26" into devel/master
seungho [Tue, 4 Aug 2020 11:25:55 +0000 (20:25 +0900)]
Fix capture issue of to capture sub-scene.
- new camera that generated inside Capture has size of Scene and default position.
- but, if a source is not a rootLayer, the position and size are needed to be set with that of the source.
- in this patch, we get position input. the position is top-left position of area to be captured in window space.
- camera actor has position and size those get by input position and size
- create new method to set jpeg quality to remove it from the argument of Start method
Change-Id: Ie5232e0ef61f34fae101fee5243a39abb29242b5
Signed-off-by: seungho <seungho@seungho.tn.corp.samsungelectronics.net>
György Straub [Fri, 21 Aug 2020 07:52:09 +0000 (08:52 +0100)]
DALi Version 1.9.26
Change-Id: Icb3ec7868c8372ffe2786b92330aecfbdba49e43
Daekwang Ryu [Fri, 21 Aug 2020 02:36:52 +0000 (11:36 +0900)]
Remove unused parameters
Change-Id: I47b576c564c7ba7b61adcfdb953bd842e09587e1
Heeyong Song [Fri, 21 Aug 2020 02:31:59 +0000 (02:31 +0000)]
Merge "Fix WindowRenderSurface crash" into devel/master
David Steele [Thu, 20 Aug 2020 14:09:21 +0000 (14:09 +0000)]
Merge "Changed minimum supported Cmake Version to allow C++17 Support" into devel/master
David Steele [Thu, 20 Aug 2020 09:48:56 +0000 (10:48 +0100)]
Removing unused touch event from Accessibility
Change-Id: I286189ab79f687756b84b9a8bc8d2d53ac94e811
Adeel Kazmi [Tue, 18 Aug 2020 18:32:11 +0000 (19:32 +0100)]
Changed minimum supported Cmake Version to allow C++17 Support
Change-Id: I6bb11ccb126c030a5c4e0991cc2d4960ec845301
Richard Huang [Tue, 18 Aug 2020 17:06:44 +0000 (18:06 +0100)]
WheelEvent class pimpling
Change-Id: I136e25c4cf4d6972c93913df2e2f7b206d2c5a54
Adeel Kazmi [Tue, 18 Aug 2020 17:51:45 +0000 (18:51 +0100)]
Change to C++14 Support
Change-Id: I1def65b69b1678e5dc14af8e872fe1b91228b1c2
Heeyong Song [Tue, 18 Aug 2020 08:17:54 +0000 (17:17 +0900)]
Fix WindowRenderSurface crash
Prevent accessing the mFrameCallbackInfoContainer in 2 thread at the same time
Change-Id: I6cdf6cea5a39747adf8f764abb58613263038752
Heeyong Song [Tue, 18 Aug 2020 01:44:17 +0000 (01:44 +0000)]
Merge "Fix an issue the Adaptor is not resumed" into devel/master
Adeel Kazmi [Fri, 14 Aug 2020 14:21:59 +0000 (15:21 +0100)]
Changes after TouchData renamed to TouchEvent
Change-Id: I6e46835fbb4bc4ce12215cfebd2c7486bde2faac
greynaga [Fri, 14 Aug 2020 10:38:46 +0000 (11:38 +0100)]
DALi Version 1.9.25
Change-Id: I3de6b3157c302d6252ad89cf2dc2ca4db8b2dc8a