platform/core/uifw/dali-core.git
2 months ago[Tizen] Add initialization of StopperNode 85/311085/1 accepted/tizen/unified/20240516.163525 accepted/tizen/unified/x/20240517.024413
Seungho Baek [Tue, 14 May 2024 02:34:31 +0000 (11:34 +0900)]
[Tizen] Add initialization of StopperNode

Change-Id: I69579b014173f849f9b12c2cab5064af7dd946c5
Signed-off-by: Seungho Baek <sbsh.baek@samsung.com>
2 months ago[Tizen] Support asan build option
Seungho Baek [Mon, 13 May 2024 05:18:04 +0000 (14:18 +0900)]
[Tizen] Support asan build option

This reverts commit d3f289ae49859a537175c4a0d66afbdbfed1fbdd.

Change-Id: Ic3cf17368c007263b81d70167746dcc7f4bcd599

2 months ago[Tizen] Not execute the remove callback
Seungho Baek [Mon, 13 May 2024 05:17:47 +0000 (14:17 +0900)]
[Tizen] Not execute the remove callback

This reverts commit a169ed61dffd1d20bcc2b866397ec111c9fc832d.

Change-Id: I3be1a1e93aef82b372ad0eea7870af05e9e8add2

2 months agoMerge branch 'devel/master' into tizen
Seungho Baek [Mon, 13 May 2024 05:17:40 +0000 (14:17 +0900)]
Merge branch 'devel/master' into tizen

Change-Id: Ibc16c442b1cbab6e7765e9e45f1f5686d82e268c

2 months agoRevert "[Tizen] Not execute the remove callback"
Seungho Baek [Mon, 13 May 2024 05:17:30 +0000 (14:17 +0900)]
Revert "[Tizen] Not execute the remove callback"

This reverts commit e7b5fd34fc5eaa75c6d05a08cb9ea7f333622aba.

2 months agoRevert "[Tizen] Support asan build option"
Seungho Baek [Mon, 13 May 2024 05:17:27 +0000 (14:17 +0900)]
Revert "[Tizen] Support asan build option"

This reverts commit aeba901745cad05623bbd1e877c722672c89505d.

2 months agoRevert "[Tizen] Print logs if dali skip rendering"
Seungho Baek [Mon, 13 May 2024 05:17:25 +0000 (14:17 +0900)]
Revert "[Tizen] Print logs if dali skip rendering"

This reverts commit 5e044cc85ee638a3fd4092f675a25470e071f9d2.

2 months agoDALi Version 2.3.23 69/310969/1 dali_2.3.23
Adeel Kazmi [Fri, 10 May 2024 10:01:56 +0000 (11:01 +0100)]
DALi Version 2.3.23

Change-Id: Ie50bf0ceb4c85aafd71a46b2497e30e419e99d33

2 months agoMerge "Fix several hit issue for offscreen rendering" into devel/master
Seungho BAEK [Tue, 7 May 2024 02:48:19 +0000 (02:48 +0000)]
Merge "Fix several hit issue for offscreen rendering" into devel/master

2 months agoSupport for recognizing legacy shaders. 79/310179/10
Adam Bialogonski [Fri, 3 May 2024 13:57:38 +0000 (14:57 +0100)]
Support for recognizing legacy shaders.

Legacy shaders should be bypassed through the shader processing
pipeline as they are.

Change-Id: I04b2d15c5e95edaaf78ddff3e5c3ca99096fcc2e

2 months agoMerge "DALi Version 2.3.22" into devel/master
Adeel Kazmi [Fri, 3 May 2024 09:07:47 +0000 (09:07 +0000)]
Merge "DALi Version 2.3.22" into devel/master

2 months agoDALi Version 2.3.22 41/310641/1 dali_2.3.22
Adam Bialogonski [Fri, 3 May 2024 08:26:37 +0000 (09:26 +0100)]
DALi Version 2.3.22

Change-Id: I2cf0620aa085c2c9de12bc47519570164f6d2e19

2 months agoFix several hit issue for offscreen rendering 58/310258/6
Seungho Baek [Wed, 24 Apr 2024 12:21:39 +0000 (21:21 +0900)]
Fix several hit issue for offscreen rendering

 - Previous implementation
   - MappingActor is not hittable by default, but it was used to check
     whether it is hitted from OnScreen RenderTask or not in HitTestRenderTaskList.
   - There is nothing to check the layer including MappingActor is consuming hit.

 - Current implementation
   - For the OnScreen hit result, check whether there is a mappingActor of OffScreen
     hit results that can be hit in front of the OnScreen hit result.
     If it is, returns the OffScreen hit results.
   - If the OnScreen hit result is layer and the layer consumes hit(the layer must
     not be hittable), returns the OffScreen hit results.
   - If there is no hit in OnScreen but there are hit results from OffScreen
     RenderTask, returns the top OffScreen hit results.

Change-Id: I2788ed90dbe0145b4c263c371353b201c65c2a80
Signed-off-by: Seungho Baek <sbsh.baek@samsung.com>
2 months agoPrint logs if dali skip rendering 83/310583/3
Eunki, Hong [Thu, 2 May 2024 06:58:19 +0000 (15:58 +0900)]
Print logs if dali skip rendering

Change-Id: I9ddca01a172b742c60b4d01c3d997306b0710d5f
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
2 months agoDo not allow to add duplicated renderer into actor 06/310606/1
Eunki, Hong [Thu, 2 May 2024 13:19:52 +0000 (22:19 +0900)]
Do not allow to add duplicated renderer into actor

Internal::Actor allow to add same renderer, but SceneGraph::Node doesn't allow.

If we do something like this, the logic might be breakdown.

actor.AddRenderer(renderer);
actor.AddRenderer(renderer);
actor.RemoveRenderer(renderer);

///< actor will have renderer, but actor's node doesn't have renderer.

To match with node's logic, let we don't allow to push-back the duplicated renderer.
Instead, just check the duplication and return the index.

Change-Id: I689896171b3df5d140089c3b99f44e1d3f0f8722
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
2 months agoAdd RenderTask::RenderUntil() 44/310044/10
jmm [Fri, 19 Apr 2024 11:52:19 +0000 (20:52 +0900)]
Add RenderTask::RenderUntil()

Change-Id: I264e29303deedaf0f8539137b26e7d0c3e8454ce

3 months agoAdd Inherited Visibility Changed signal 84/310084/12
Seungho Baek [Mon, 22 Apr 2024 07:43:13 +0000 (16:43 +0900)]
Add Inherited Visibility Changed signal

Change-Id: I1d592e6a5c9f17b77b8ee9f8828586f424985699
Signed-off-by: Seungho Baek <sbsh.baek@samsung.com>
3 months agoMerge "DALi Version 2.3.21" into devel/master
David Steele [Fri, 26 Apr 2024 09:48:47 +0000 (09:48 +0000)]
Merge "DALi Version 2.3.21" into devel/master

3 months agoDALi Version 2.3.21 91/310391/1 dali_2.3.21
Richard Huang [Fri, 26 Apr 2024 09:42:44 +0000 (10:42 +0100)]
DALi Version 2.3.21

Change-Id: I9ebe010c86446d8cae0e243144673306e0235ac9

3 months agoMerge "Add log in EmitSingleTap" into devel/master
joogab yun [Fri, 26 Apr 2024 09:02:07 +0000 (09:02 +0000)]
Merge "Add log in EmitSingleTap" into devel/master

3 months agoMerge "Allows updating MinimumDistance and MinimumPanEvents of pan gestures." into...
joogab yun [Fri, 26 Apr 2024 09:02:01 +0000 (09:02 +0000)]
Merge "Allows updating MinimumDistance and MinimumPanEvents of pan gestures." into devel/master

3 months agoAdd VIRTUAL_REMOCON and VIRTUAL_MOUSE device types 16/310216/2
joogab.yun [Wed, 24 Apr 2024 06:50:45 +0000 (15:50 +0900)]
Add VIRTUAL_REMOCON and VIRTUAL_MOUSE device types

Change-Id: I67f3ae35d364253b22a1d218df6c8c1bda848e97

3 months agoAdd log in EmitSingleTap 46/310146/2
joogab.yun [Tue, 23 Apr 2024 06:18:59 +0000 (15:18 +0900)]
Add log in EmitSingleTap

Change-Id: Ic5c4831daa355195c272c298d478b7d1519a20b4

3 months agoAllows updating MinimumDistance and MinimumPanEvents of pan gestures. 39/310139/3
joogab.yun [Tue, 23 Apr 2024 05:45:38 +0000 (14:45 +0900)]
Allows updating MinimumDistance and MinimumPanEvents of pan gestures.

Change-Id: Ibe985928ae9e68f70fc4faf573284ce1ee956fb5

3 months agoMerge "Minor reduce IntrusivePtr<Actor>'s meanless Reference and Unreference" into...
Eunki Hong [Sat, 20 Apr 2024 07:40:47 +0000 (07:40 +0000)]
Merge "Minor reduce IntrusivePtr<Actor>'s meanless Reference and Unreference" into devel/master

3 months agoMerge "Move OrderedSet as integration-api, so dali-toolkit can use it." into devel...
Eunki Hong [Fri, 19 Apr 2024 12:43:16 +0000 (12:43 +0000)]
Merge "Move OrderedSet as integration-api, so dali-toolkit can use it." into devel/master

3 months agoDALi Version 2.3.20 27/310027/1 dali_2.3.20
David Steele [Fri, 19 Apr 2024 09:47:06 +0000 (10:47 +0100)]
DALi Version 2.3.20

Change-Id: Ib80a171ab80256a0a5cdb5e18484c79fdbbe138e

3 months agoMinor reduce IntrusivePtr<Actor>'s meanless Reference and Unreference 13/310013/2
Eunki, Hong [Fri, 19 Apr 2024 06:03:11 +0000 (15:03 +0900)]
Minor reduce IntrusivePtr<Actor>'s meanless Reference and Unreference

During Actor.Remove() API call, we try to increase whole child actor's
reference and unreference again while iteration.

It might give "minor" overhead. So let we don't do it.

Change-Id: If572a06ce72eae2dd2ce2bf4b1b4db29f69038a0
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
3 months agoMove OrderedSet as integration-api, so dali-toolkit can use it. 44/309944/1
Eunki, Hong [Thu, 18 Apr 2024 07:00:56 +0000 (16:00 +0900)]
Move OrderedSet as integration-api, so dali-toolkit can use it.

Let we move the OrderedSet class as integration-api so dali-toolkit can use it.

Change-Id: I2dbbff14db048d52c5a02bc967b379defcd2c03e
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
3 months agoDo not call RemoveObserver when we don't add it for PropertyResetter 98/309898/2
Eunki, Hong [Thu, 18 Apr 2024 03:01:01 +0000 (12:01 +0900)]
Do not call RemoveObserver when we don't add it for PropertyResetter

It is possible that PropertyResetter destructed before Initialize()
when app terminate case.

If then, it is possible to got some crash when we try to access to
'destroyed' property owner, and call RemoveObserver();

To avoid this case, let we make ensure that we call initalized so
it is possible to call RemoveObserver().

Change-Id: I24b74f1d963090d867e1d047fe739132f9465ee3
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
3 months agoMerge "Seperate KeepRendering reason more detail" into devel/master
David Steele [Mon, 15 Apr 2024 10:49:51 +0000 (10:49 +0000)]
Merge "Seperate KeepRendering reason more detail" into devel/master

3 months agoDALi Version 2.3.19 89/309589/1 dali_2.3.19
Richard Huang [Fri, 12 Apr 2024 09:52:03 +0000 (10:52 +0100)]
DALi Version 2.3.19

Change-Id: I569d4803c7ca83bc4f955b35545665f3ec04c4e6

3 months agoSeperate KeepRendering reason more detail 39/309539/2
Eunki, Hong [Fri, 12 Apr 2024 04:48:37 +0000 (13:48 +0900)]
Seperate KeepRendering reason more detail

Let we said more detail reason why we need to keep rendering.
KeepRendering called vs FrameCallbackInterface return true vs Renderer behaviour is Continuously.

Change-Id: I00310a718f4667f401512e2f370bb2930318f5b2
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
3 months ago[Tizen] Print logs if dali skip rendering accepted/tizen/unified/20240412.141400 accepted/tizen/unified/x/20240415.014035
Eunki, Hong [Tue, 9 Apr 2024 05:14:18 +0000 (14:14 +0900)]
[Tizen] Print logs if dali skip rendering

This reverts commit d07c297a3bf893858d696a9486e2b5087e5c70b3.

Change-Id: I32ad13094ee7de3e87b332ee4847f63c3bb1cd44

3 months ago[Tizen] Support asan build option
Eunki, Hong [Tue, 9 Apr 2024 05:14:09 +0000 (14:14 +0900)]
[Tizen] Support asan build option

This reverts commit aed7e0042ad4313f44a46bea13f0c52e16774f45.

Change-Id: I5032381089327d0d240b18e21020f1d4697e2f07

3 months ago[Tizen] Not execute the remove callback
Eunki, Hong [Tue, 9 Apr 2024 05:13:52 +0000 (14:13 +0900)]
[Tizen] Not execute the remove callback

This reverts commit ad375e14b3462e468a0311d4fa54a3e16e26526a.

Change-Id: I10f8519bb9e9c46f404c04c2d2a8712eaf1d50b7

3 months agoMerge branch 'devel/master' into tizen
Eunki, Hong [Tue, 9 Apr 2024 05:13:45 +0000 (14:13 +0900)]
Merge branch 'devel/master' into tizen

Change-Id: Ib40ee2695952c279684ecbebd502a996b33b62f2

3 months agoRevert "[Tizen] Not execute the remove callback"
Eunki, Hong [Tue, 9 Apr 2024 05:13:39 +0000 (14:13 +0900)]
Revert "[Tizen] Not execute the remove callback"

This reverts commit ccc3e04e2cf2ae5b05426e27ef8172f2037a1da8.

3 months agoRevert "[Tizen] Support asan build option"
Eunki, Hong [Tue, 9 Apr 2024 05:13:37 +0000 (14:13 +0900)]
Revert "[Tizen] Support asan build option"

This reverts commit 3e55201e94295097d8be8ed766b512488cf04f72.

3 months agoRevert "[Tizen] Print logs if dali skip rendering"
Eunki, Hong [Tue, 9 Apr 2024 05:13:34 +0000 (14:13 +0900)]
Revert "[Tizen] Print logs if dali skip rendering"

This reverts commit f647fa5122e2cbbfbd51226f39be1977278267f0.

3 months agoDALi Version 2.3.18 74/309174/1 dali_2.3.18
David Steele [Fri, 5 Apr 2024 09:57:31 +0000 (10:57 +0100)]
DALi Version 2.3.18

Change-Id: I27f0ea2fcd707fc371d79aeeb8c61532c90ae1cf

3 months ago1. Fixes a bug where events do not occur when longPressGestures overlap. This is... 22/309022/5
joogab.yun [Thu, 4 Apr 2024 01:54:25 +0000 (10:54 +0900)]
1. Fixes a bug where events do not occur when longPressGestures overlap. This is when using gestures with FeedTouch.
2. Remove unnecessary conditional statements.

Change-Id: If8a4e876cb0b6031e744b6f0b8a3beef6d28517d

3 months ago[Tizen] Print logs if dali skip rendering accepted/tizen/unified/20240404.164422 accepted/tizen/unified/x/20240408.053812
huiyu.eun [Wed, 3 Apr 2024 06:00:36 +0000 (15:00 +0900)]
[Tizen] Print logs if dali skip rendering

This reverts commit 2c65d2f21c4c73c6e902fc8be85987337f11dfd7.

Change-Id: I918b4cec834be5a527da79ee1f0672679fbd0f4b

3 months ago[Tizen] Support asan build option
huiyu.eun [Wed, 3 Apr 2024 06:00:22 +0000 (15:00 +0900)]
[Tizen] Support asan build option

This reverts commit f2475566fab16fce4442ceb43a30971b37394650.

Change-Id: I7ad0796e402dddf4e60151eac48209b71534e887

3 months ago[Tizen] Not execute the remove callback
huiyu.eun [Wed, 3 Apr 2024 06:00:07 +0000 (15:00 +0900)]
[Tizen] Not execute the remove callback

This reverts commit 543630f4598c3c766b306f747ef0a31d529d1354.

Change-Id: I4b795ff6b291ff49bffa310d1b34277c7d643520

3 months agoMerge branch 'devel/master' into tizen
huiyu.eun [Wed, 3 Apr 2024 05:59:30 +0000 (14:59 +0900)]
Merge branch 'devel/master' into tizen

Change-Id: I23891d3298cbf54628b4e1004af73366a6e82f77

3 months agoRevert "[Tizen] Not execute the remove callback"
huiyu.eun [Wed, 3 Apr 2024 05:59:11 +0000 (14:59 +0900)]
Revert "[Tizen] Not execute the remove callback"

This reverts commit 5e782fb7aa92d069fdafe702c96f855e733d9662.

3 months agoRevert "[Tizen] Support asan build option"
huiyu.eun [Wed, 3 Apr 2024 05:59:07 +0000 (14:59 +0900)]
Revert "[Tizen] Support asan build option"

This reverts commit 7a9311b29ba0d606bc4bb87bd5e483c226267289.

3 months agoRevert "[Tizen] Print logs if dali skip rendering"
huiyu.eun [Wed, 3 Apr 2024 05:59:03 +0000 (14:59 +0900)]
Revert "[Tizen] Print logs if dali skip rendering"

This reverts commit 606cd1b1cba5d7436cc92416e6482ccd12fb7cbb.

3 months agoAdd SetTime in TouchEvent 97/308797/2
joogab.yun [Mon, 1 Apr 2024 08:03:16 +0000 (17:03 +0900)]
Add SetTime in TouchEvent

Change-Id: Iad92d4c0e3e07fded7f1fdbb44e59d967502f2c9

3 months agoMerge "Add SetTapMaximumMotionAllowedDistance" into devel/master
joogab yun [Fri, 29 Mar 2024 00:04:29 +0000 (00:04 +0000)]
Merge "Add SetTapMaximumMotionAllowedDistance" into devel/master

3 months agoDALi Version 2.3.17 43/308643/1 dali_2.3.17
Adeel Kazmi [Thu, 28 Mar 2024 09:29:26 +0000 (09:29 +0000)]
DALi Version 2.3.17

Change-Id: Icdfb9fe6152f2eae50bb2ab5a57570e111c30270

3 months agoAdd SetTapMaximumMotionAllowedDistance 01/308601/2
joogab.yun [Thu, 28 Mar 2024 05:03:47 +0000 (14:03 +0900)]
Add SetTapMaximumMotionAllowedDistance

Change-Id: I5c8dd3304774f73d2bda7ca5566406b05039e233

4 months agoactorCoordinates were missing from TapGesture when FeedTouch was used 74/308474/2
joogab.yun [Tue, 26 Mar 2024 07:39:41 +0000 (16:39 +0900)]
actorCoordinates were missing from TapGesture when FeedTouch was used

Change-Id: Icfc319322f02920c76923cdaffce3b69354bcf92

4 months agoUpdated README.md to include recursive pre-requisite 40/308440/1
Adeel Kazmi [Mon, 25 Mar 2024 15:18:36 +0000 (15:18 +0000)]
Updated README.md to include recursive pre-requisite

Change-Id: Ic40db23478b503520e228bd5734bf4ca406d6cbb

4 months ago[Tizen] Print logs if dali skip rendering accepted/tizen/unified/20240326.104921 accepted/tizen/unified/x/20240327.045047
Taehyub Kim [Mon, 25 Mar 2024 08:17:16 +0000 (17:17 +0900)]
[Tizen] Print logs if dali skip rendering

This reverts commit 48e59193549f2ba1b1ff79dd0bb034dbc2e0208c.

4 months ago[Tizen] Support asan build option
Taehyub Kim [Mon, 25 Mar 2024 08:16:58 +0000 (17:16 +0900)]
[Tizen] Support asan build option

This reverts commit 6412161f415365bd822af1145851ae9ba2b39bb5.

4 months ago[Tizen] Not execute the remove callback
Taehyub Kim [Mon, 25 Mar 2024 08:15:18 +0000 (17:15 +0900)]
[Tizen] Not execute the remove callback

This reverts commit b94970dc9695ba12667290fe4f37edb77a24059f.

4 months agoMerge branch 'devel/master' into tizen
Taehyub Kim [Mon, 25 Mar 2024 08:15:02 +0000 (17:15 +0900)]
Merge branch 'devel/master' into tizen

Change-Id: I85f374a186300b10088612b4a81c4f6eb8cafb99

4 months agoRevert "[Tizen] Not execute the remove callback"
Taehyub Kim [Mon, 25 Mar 2024 08:14:54 +0000 (17:14 +0900)]
Revert "[Tizen] Not execute the remove callback"

This reverts commit 76a7e0679831780137d1e3b5e241a2ebb1455226.

4 months agoRevert "[Tizen] Support asan build option"
Taehyub Kim [Mon, 25 Mar 2024 08:14:41 +0000 (17:14 +0900)]
Revert "[Tizen] Support asan build option"

This reverts commit a87fe185fad85deb74c75d705fe682d7509533d0.

4 months agoRevert "[Tizen] Print logs if dali skip rendering"
Taehyub Kim [Mon, 25 Mar 2024 08:14:32 +0000 (17:14 +0900)]
Revert "[Tizen] Print logs if dali skip rendering"

This reverts commit 8944f65ad1a0db91bcc9ba9b0680a1b60de98278.

4 months ago(HitTest) Overlay actors should not be clipped if CLIP_TO_BOUNDING_BOX is selected 59/307959/3
Adeel Kazmi [Thu, 14 Mar 2024 16:01:31 +0000 (16:01 +0000)]
(HitTest) Overlay actors should not be clipped if CLIP_TO_BOUNDING_BOX is selected

Change-Id: Id76d47a773766e19f969d73bb912e5aa6518380e

4 months agoDALi Version 2.3.16 71/308371/1 dali_2.3.16
Adam Bialogonski [Fri, 22 Mar 2024 10:31:53 +0000 (10:31 +0000)]
DALi Version 2.3.16

Change-Id: I964b2baeaf0a5dd83ac6f00c624c5e22e73a7684

4 months agoMerge "Clean initialization and shutdown of UniformBufferManager" into devel/master
David Steele [Thu, 21 Mar 2024 17:21:32 +0000 (17:21 +0000)]
Merge "Clean initialization and shutdown of UniformBufferManager" into devel/master

4 months agoClean initialization and shutdown of UniformBufferManager 75/308275/2
David Steele [Wed, 20 Mar 2024 17:44:54 +0000 (17:44 +0000)]
Clean initialization and shutdown of UniformBufferManager

Ensure all unique ptrs are null initialized
Clean down UBO buffers in UpdateRender thread ContextDestroyed,
rather than waiting to clean down in event thread.

Change-Id: I95a14be51e91230612d1a08808f8b151691328c3
Signed-off-by: David Steele <david.steele@samsung.com>
4 months agoMerge "Fix build issues for windows platform" into devel/master
Adeel Kazmi [Thu, 21 Mar 2024 09:43:17 +0000 (09:43 +0000)]
Merge "Fix build issues for windows platform" into devel/master

4 months ago[Tizen] Print logs if dali skip rendering accepted/tizen/unified/20240321.142346 accepted/tizen/unified/20240321.155945 accepted/tizen/unified/x/20240326.073703
EverLEEst(SangHyeon Lee) [Wed, 20 Mar 2024 09:31:57 +0000 (18:31 +0900)]
[Tizen] Print logs if dali skip rendering

This reverts commit 91e06cc0af225ca806dbebd4feee3ea39ba1aaca.

4 months ago[Tizen] Support asan build option
EverLEEst(SangHyeon Lee) [Wed, 20 Mar 2024 09:31:38 +0000 (18:31 +0900)]
[Tizen] Support asan build option

This reverts commit 370c6b5b67496c9bcc419b114330c937e4099729.

4 months ago[Tizen] Not execute the remove callback
EverLEEst(SangHyeon Lee) [Wed, 20 Mar 2024 09:31:19 +0000 (18:31 +0900)]
[Tizen] Not execute the remove callback

This reverts commit d5dfd107cdabd9e7bf8d5827c588b0d1aec9a5e1.

4 months agoMerge branch 'devel/master' into tizen
EverLEEst(SangHyeon Lee) [Wed, 20 Mar 2024 09:30:28 +0000 (18:30 +0900)]
Merge branch 'devel/master' into tizen

4 months agoRevert "[Tizen] Not execute the remove callback"
EverLEEst(SangHyeon Lee) [Wed, 20 Mar 2024 09:30:16 +0000 (18:30 +0900)]
Revert "[Tizen] Not execute the remove callback"

This reverts commit 58f2190adbdfb6e1c17aee1f53065869a8452e4d.

4 months agoRevert "[Tizen] Support asan build option"
EverLEEst(SangHyeon Lee) [Wed, 20 Mar 2024 09:30:02 +0000 (18:30 +0900)]
Revert "[Tizen] Support asan build option"

This reverts commit fa0523459f9c5a605308d616f9dfb94413f78818.

4 months agoRevert "[Tizen] Print logs if dali skip rendering"
EverLEEst(SangHyeon Lee) [Wed, 20 Mar 2024 09:29:40 +0000 (18:29 +0900)]
Revert "[Tizen] Print logs if dali skip rendering"

This reverts commit 5a66974ad0b164b1aa1292e603489e5f7eddea9a.

4 months agoRevert "[Tizen] Add NoIntercept KeyEvent modifier"
EverLEEst(SangHyeon Lee) [Wed, 20 Mar 2024 09:28:47 +0000 (18:28 +0900)]
Revert "[Tizen] Add NoIntercept KeyEvent modifier"

This reverts commit c8b2a08ac51c405be2dcca4de1568e28cb3de988.

4 months agoAllow to set renderpass tag even RenderTask removed from RenderTaskList 00/308200/1
Eunki Hong [Tue, 19 Mar 2024 13:35:41 +0000 (22:35 +0900)]
Allow to set renderpass tag even RenderTask removed from RenderTaskList

There was potential of crash if we set RenderPassTag after RenderTask removed.

Change-Id: Iab01b01b4d4c59ce0328fc5f4b55f40a26f82435
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
4 months agoSVACE Fix: Initialise all members in SceneGraph::Animation 88/308188/1
Adeel Kazmi [Tue, 19 Mar 2024 08:11:02 +0000 (08:11 +0000)]
SVACE Fix: Initialise all members in SceneGraph::Animation

Change-Id: I96c3d9e6606afd0dcab84053620fcadec64c685d

4 months agoMerge "Append Stopped animation notify list at Update Animation time" into devel...
Eunki Hong [Mon, 18 Mar 2024 08:15:54 +0000 (08:15 +0000)]
Merge "Append Stopped animation notify list at Update Animation time" into devel/master

4 months agoGet the id of animation and render task 07/305707/3
Eunki Hong [Tue, 6 Feb 2024 15:35:48 +0000 (00:35 +0900)]
Get the id of animation and render task

Let we support to get the id of Animation and RenderTask, follow by NotifyInterface notify id.

Change-Id: I56b6a0d27ceae4024fb52255062ebd00b87332eb
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
4 months agoAppend Stopped animation notify list at Update Animation time 45/307245/6
Eunki, Hong [Wed, 6 Mar 2024 09:01:41 +0000 (18:01 +0900)]
Append Stopped animation notify list at Update Animation time

Let we insert animation notification list at Animate() time, instead of
immediate.

This will make insure we will not notify signal for destroyed, cleared animation.
And it will increase performance minor.

Change-Id: I5371be63c36787874e9ae850e14e5796c5f819b1
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
4 months agoMerge "Unregister all processors if we need" into devel/master
Eunki Hong [Fri, 15 Mar 2024 23:26:41 +0000 (23:26 +0000)]
Merge "Unregister all processors if we need" into devel/master

4 months agoDALi Version 2.3.15 75/308075/1 dali_2.3.15
Adeel Kazmi [Fri, 15 Mar 2024 19:24:06 +0000 (19:24 +0000)]
DALi Version 2.3.15

Change-Id: I5d758ab48c230b0b4a4c1893991628c7ad180a6a

4 months agoUnregister all processors if we need 91/307691/2
Eunki, Hong [Tue, 12 Mar 2024 08:19:14 +0000 (17:19 +0900)]
Unregister all processors if we need

Let we ensure that all processor are unregistered after call
Core::UnregisterProcessors() API.

It will remove both Processor, and PostProcessor.

Change-Id: Ie70f287d8e0ec33579a5128ce2268a66aa4de277
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
4 months agoMerge "Add NoIntercept KeyEvent modifier" into devel/master
Seoyeon Kim [Thu, 14 Mar 2024 04:59:36 +0000 (04:59 +0000)]
Merge "Add NoIntercept KeyEvent modifier" into devel/master

4 months agoMerge "[Tizen] Add NoIntercept KeyEvent modifier" into tizen
Seoyeon Kim [Thu, 14 Mar 2024 04:59:29 +0000 (04:59 +0000)]
Merge "[Tizen] Add NoIntercept KeyEvent modifier" into tizen

4 months ago[Tizen] Print logs if dali skip rendering accepted/tizen/unified/20240313.134222 accepted/tizen/unified/20240313.135415 accepted/tizen/unified/x/20240314.073419
Jaehyun Cho [Tue, 12 Mar 2024 05:06:27 +0000 (14:06 +0900)]
[Tizen] Print logs if dali skip rendering

This reverts commit b70144e45ae6a24645e954fb2b19ad1fcdac3984.

4 months ago[Tizen] Support asan build option
Jaehyun Cho [Tue, 12 Mar 2024 05:06:18 +0000 (14:06 +0900)]
[Tizen] Support asan build option

This reverts commit b9fcec73ade14ee8e5059a4d202f6a9b536a568a.

4 months ago[Tizen] Not execute the remove callback
Jaehyun Cho [Tue, 12 Mar 2024 05:05:53 +0000 (14:05 +0900)]
[Tizen] Not execute the remove callback

This reverts commit 7c51561d7030245e2ff6181f5256db741e9d67dc.

4 months agoMerge branch 'devel/master' into tizen
Jaehyun Cho [Tue, 12 Mar 2024 05:05:12 +0000 (14:05 +0900)]
Merge branch 'devel/master' into tizen

4 months agoRevert "[Tizen] Not execute the remove callback"
Jaehyun Cho [Tue, 12 Mar 2024 05:04:46 +0000 (14:04 +0900)]
Revert "[Tizen] Not execute the remove callback"

This reverts commit 7c86189ddab55047ecf5af021fd41512ec9f8d94.

4 months agoRevert "[Tizen] Support asan build option"
Jaehyun Cho [Tue, 12 Mar 2024 05:04:41 +0000 (14:04 +0900)]
Revert "[Tizen] Support asan build option"

This reverts commit af0181cccbed09bec76c6d6105372290a1d9f3f0.

4 months agoRevert "[Tizen] Print logs if dali skip rendering"
Jaehyun Cho [Tue, 12 Mar 2024 05:04:35 +0000 (14:04 +0900)]
Revert "[Tizen] Print logs if dali skip rendering"

This reverts commit 8b4f422de4f5ae52cb4c7b169727967ce58bcd1a.

4 months agoRemove useless flag at SceneGraph::Renderer.mDirtyFlag 90/301290/4
Eunki Hong [Mon, 13 Nov 2023 11:33:33 +0000 (20:33 +0900)]
Remove useless flag at SceneGraph::Renderer.mDirtyFlag

We can use PropertyOwner::Updated() instead of mDirtyFlag.

Let we make use PropertyOwner system, instead of Renderer's own member value.

Change-Id: Ibf18f8dc8e1b8ebaf140034fe9132d1b45ac69d2
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
4 months agoDALi Version 2.3.14 52/307452/1 dali_2.3.14
Adam Bialogonski [Fri, 8 Mar 2024 10:49:30 +0000 (10:49 +0000)]
DALi Version 2.3.14

Change-Id: If6cd46a0c4579fdacc804665c4375fc0019e5bcd

4 months ago[Tizen] Print logs if dali skip rendering accepted/tizen/unified/20240307.075403 accepted/tizen/unified/toolchain/20240311.065648 accepted/tizen/unified/x/20240308.033554
Jiyun Yang [Wed, 6 Mar 2024 05:41:20 +0000 (14:41 +0900)]
[Tizen] Print logs if dali skip rendering

This reverts commit 2e13f2d970000ad844c304727d1687a0ba3faf7c.

4 months ago[Tizen] Support asan build option
Jiyun Yang [Wed, 6 Mar 2024 05:41:07 +0000 (14:41 +0900)]
[Tizen] Support asan build option

This reverts commit ebc09fb81adf87538d3b0560d0e609206a9e1f76.

4 months ago[Tizen] Not execute the remove callback
Jiyun Yang [Wed, 6 Mar 2024 05:40:54 +0000 (14:40 +0900)]
[Tizen] Not execute the remove callback

This reverts commit d3d5014063d46b6c02ed92197b37b9bc9ac2e9a1.

4 months agoMerge branch 'devel/master' into tizen
Jiyun Yang [Wed, 6 Mar 2024 05:40:43 +0000 (14:40 +0900)]
Merge branch 'devel/master' into tizen

Change-Id: If54fa766a2424e87b073a33b601de9ab0798395e

4 months agoRevert "[Tizen] Not execute the remove callback"
Jiyun Yang [Wed, 6 Mar 2024 05:40:04 +0000 (14:40 +0900)]
Revert "[Tizen] Not execute the remove callback"

This reverts commit 638ff40f53e33a0dd4b8128c6693c5407ee7a112.

4 months agoRevert "[Tizen] Support asan build option"
Jiyun Yang [Wed, 6 Mar 2024 05:40:00 +0000 (14:40 +0900)]
Revert "[Tizen] Support asan build option"

This reverts commit 0c2326af9c88bbabbd17f623d26727c6f941678a.