platform/core/uifw/dali-core.git
6 weeks ago[Tizen] Mark as do not skip rendering if SceneGraphRenderer dirty 98/307898/1 accepted/tizen_7.0_unified tizen_7.0 accepted/tizen/7.0/unified/20240319.152946 accepted/tizen/7.0/unified/20240330.125528 accepted/tizen/7.0/unified/20240418.084435
Eunki, Hong [Thu, 14 Mar 2024 05:26:56 +0000 (14:26 +0900)]
[Tizen] Mark as do not skip rendering if SceneGraphRenderer dirty

Let we make dirty if textureset is changed

Change-Id: I6534626b0a830611ab599b62bc673364a451aadf
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 weeks ago[Tizen] Safety guard for BaseObject during SetProperty 77/306677/1 accepted/tizen/7.0/unified/20240314.152320
Eunki, Hong [Wed, 21 Feb 2024 12:43:32 +0000 (21:43 +0900)]
[Tizen] Safety guard for BaseObject during SetProperty

It is possible to delete self during SetProperty.
To avoid this case, let we keep the handle during
SetProperty / OnSetProperty / PropertySetSignal emit.

TODO : Is SetProperty is the only case to be break down?

Change-Id: I7cb8249958914105a2cb8e8e3a44545f23948516
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
2 months ago[Tizen] Make possible to capture on the old driver devices. 56/306156/1 accepted/tizen/7.0/unified/20240219.160848
seungho [Tue, 23 Mar 2021 12:16:46 +0000 (21:16 +0900)]
[Tizen] Make possible to capture on the old driver devices.

Change-Id: I5d20b4c70b6da1e98b0c29d465a8a700c2a0410a
Signed-off-by: seungho <sbsh.baek@samsung.com>
2 months ago[Tizen] Support to get shader language version for shader static API 65/305665/1 accepted/tizen/7.0/unified/20240207.172835
Eunki, Hong [Mon, 5 Feb 2024 14:47:04 +0000 (23:47 +0900)]
[Tizen] Support to get shader language version for shader static API

Let we support to get shader language version

Change-Id: Ic9a1c2223633acb965f945d04179d20a9d7b89b7
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
2 months ago[Tizen] Allow to get Shader::Hint by integer 64/305664/1
Eunki Hong [Sat, 21 Oct 2023 14:01:29 +0000 (23:01 +0900)]
[Tizen] Allow to get Shader::Hint by integer

Previously Shader::Hint value could be assigned only by string.
Let we allow to assing hint value Shader::Hint::Value (as int32_t)
if user know the enum correctly.

Change-Id: Ifc6dbb8ea76180b8e454dace28ae3ed4de447037
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
2 months ago[Tizen] Fix coverity issue (uninitialized value) 60/305660/1
Eunki, Hong [Tue, 6 Feb 2024 05:23:00 +0000 (14:23 +0900)]
[Tizen] Fix coverity issue (uninitialized value)

Change-Id: If29926add9ef547d44251754a65ff1275080974e
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
2 months ago[Tizen] Fix rendering occured unlimited if window size changed multiple 13/305213/1 accepted/tizen/7.0/unified/20240130.230250 accepted/tizen/7.0/unified/20240130.230331
Eunki, Hong [Tue, 12 Dec 2023 04:13:19 +0000 (13:13 +0900)]
[Tizen] Fix rendering occured unlimited if window size changed multiple

To support multi window cases, dali-adaptor count how many times
the window resize event occured.

But in dali-core scene has only bool flag.

So if scene changed multiple times during 1 render time,
surface resized count never be reduced as zero.
So it will keep rendering unlimited.

This patch make we return the number of surface rect changed,
so dali-adaptor can control the scene changed count well.

Change-Id: I35d0bcef3ff33c67f106b276848a2b5a26ccc67c
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
3 months ago[Tizen] Correct to compute prior Actor in hit test 12/304112/1 accepted/tizen/7.0/unified/20240111.013534
Jiyun Yang [Wed, 10 Jan 2024 08:29:39 +0000 (17:29 +0900)]
[Tizen] Correct to compute prior Actor in hit test

Change-Id: I2bc3ea0185ec3d31434b454f4e40afc7e938055f
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
3 months ago[Tizen] Property Notify for orientation changes (PoC) 04/304104/1
Eunki Hong [Thu, 31 Aug 2023 14:07:13 +0000 (23:07 +0900)]
[Tizen] Property Notify for orientation changes (PoC)

Allow to make Notify if Orientation changed, and we register
PropertyNotification by StepCondition.

TODO : Need to calculate more meanful value.
Currently, we trigger by compare each EulerAngle values.

Change-Id: I0aa2355c0071a8200a029b9350f6cfdad08e2c12
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
3 months ago[Tizen] Fixed svace issue 27/304027/1
joogab.yun [Tue, 9 Jan 2024 07:16:49 +0000 (16:16 +0900)]
[Tizen] Fixed svace issue

Initialized eventTime for hitTestResults

Change-Id: I74f9e20b0432d14fe2689191f3f20bbdd2c89be9

3 months ago[Tizen] Fix several hit issue for offscreen rendering 07/303707/6 accepted/tizen/7.0/unified/20240105.145203
seungho baek [Wed, 3 Jan 2024 13:20:26 +0000 (22:20 +0900)]
[Tizen] 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: I1108d67bea5ed05d53c1e60417ff9ebbac096816
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
4 months ago[Tizen] Fix svace issue for rendererable 87/303287/1 accepted/tizen/7.0/unified/20231226.011000
Eunki Hong [Fri, 22 Dec 2023 11:47:27 +0000 (20:47 +0900)]
[Tizen] Fix svace issue for rendererable

Change-Id: I5cb6bd3ee198340b6cd3bcf291212f4440d2ba69
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
4 months ago[Tizen] fix hit test for fbo rendertask 28/302928/1 accepted/tizen/7.0/unified/20231220.074656 accepted/tizen/7.0/unified/20231220.124900 accepted/tizen/7.0/unified/20231220.134945 accepted/tizen/7.0/unified/20231220.170051
seungho baek [Fri, 19 May 2023 06:51:51 +0000 (15:51 +0900)]
[Tizen] fix hit test for fbo rendertask

Change-Id: Ib0a06a51986a43367991f0d4946919223b58e1cf
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
4 months ago[Tizen] Use DepthIndex for 3D rendering order 39/302539/1 accepted/tizen/7.0/unified/20231218.070957 accepted/tizen/7.0/unified/20231219.155806
seungho baek [Tue, 5 Dec 2023 08:20:18 +0000 (17:20 +0900)]
[Tizen] Use DepthIndex for 3D rendering order

Change-Id: I898668b515410c888e616b64ce103f833cc4f399
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
4 months ago[Tizen] Remove unmatched Since tag 78/302478/1
seungho baek [Thu, 7 Dec 2023 10:51:30 +0000 (19:51 +0900)]
[Tizen] Remove unmatched Since tag

Change-Id: I9df97bd4ec32e2228b59ff3cd4d5a5caa3a3924b
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
4 months ago[Tizen] Added render-task to the touch event 06/302306/1 accepted/tizen/7.0/unified/20231207.071827
Adam Bialogonski [Mon, 13 Nov 2023 16:36:28 +0000 (16:36 +0000)]
[Tizen] Added render-task to the touch event

Change-Id: Ida661df52c894d39da7e345b157dcb2fe8529ae5
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
4 months ago[Tizen] Fix viewport size when off-screen actor hittest 05/302305/1
Eunki, Hong [Tue, 22 Aug 2023 02:37:11 +0000 (11:37 +0900)]
[Tizen] Fix viewport size when off-screen actor hittest

There was some miss-conversion of screen coordinate
when we use offscreen rendering.

Since hit-test algorithm use converted-screen-coordinate
by inputMappingActor, we also need to use inputMappingActor
when we use viewport value.

Change-Id: I2b1995a1b8e47b600239dcfb6e0380124e484f2f
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
4 months ago[Tizen] Add BuildPickingRay to devel api 04/302304/1
David Steele [Mon, 6 Mar 2023 18:54:41 +0000 (18:54 +0000)]
[Tizen] Add BuildPickingRay to devel api

Change-Id: I93874e9b546c9f56f90a0cf11e8c4dbc3b7e7b6a
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
4 months ago[Tizen] Fix MapView touch patch + UTC for mutli exclusive touch 91/301891/3 accepted/tizen/7.0/unified/20231130.101956
huiyu.eun [Wed, 1 Nov 2023 05:02:23 +0000 (14:02 +0900)]
[Tizen] Fix MapView touch patch + UTC for mutli exclusive touch
Change-Id: I91906db2f756441dd059abf76d283aee858f0b84
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
7 months ago[Tizen] Make Hittable and touch required function be public 99/298899/2 accepted/tizen/7.0/unified/20230927.090504 accepted/tizen/7.0/unified/20231018.172226 accepted/tizen/7.0/unified/20231024.025344 accepted/tizen/7.0/unified/20231026.165722 accepted/tizen/7.0/unified/20231116.025845 accepted/tizen/7.0/unified/20231122.100640
Wonsik Jung [Fri, 15 Sep 2023 02:47:59 +0000 (11:47 +0900)]
[Tizen] Make Hittable and touch required function be public

Make Hittable and touch required function be public to use in dali-toolkit

Change-Id: Ib43dc98caebe4f191e2f82f1816b78b5599f21a8

7 months ago[Tizen] Make an Actor be exclusive source actor for multiple RenderTask 06/298706/1 accepted/tizen/7.0/unified/20230915.095415
seungho baek [Thu, 24 Aug 2023 08:12:14 +0000 (17:12 +0900)]
[Tizen] Make an Actor be exclusive source actor for multiple RenderTask

Change-Id: Id0e6db5a514c3fc2d4c53bb3e5da83ea9f27f0c4
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
7 months ago[Tizen] Make some camera actor animatable & constraint input 00/298700/1
seungho baek [Wed, 2 Aug 2023 05:03:24 +0000 (14:03 +0900)]
[Tizen] Make some camera actor animatable & constraint input

Change-Id: I7b164c6885dc3225a0ba13e560a71c13ec23e88c
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
7 months ago[Tizen] Ignore mipmap generation when texture format compressed 56/298356/2
Eunki, Hong [Thu, 17 Aug 2023 05:41:34 +0000 (14:41 +0900)]
[Tizen] Ignore mipmap generation when texture format compressed

Change-Id: I41f991873d5300910affa218256e375171bd4a2c
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
7 months ago[Tizen] Fix svace / coverity issue (not used value) 79/298279/1
Eunki, Hong [Tue, 5 Sep 2023 01:32:20 +0000 (10:32 +0900)]
[Tizen] Fix svace / coverity issue (not used value)

Change-Id: Ib120944e259d97a5d295edafb2ce1ef26d4f44bf
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months ago[Tizen] Allow epsilon value for ray-test 64/297764/2 accepted/tizen/7.0/unified/20230825.185049
Eunki, Hong [Wed, 23 Aug 2023 03:52:57 +0000 (12:52 +0900)]
[Tizen] Allow epsilon value for ray-test

There was some numeric error comes when we touch
from edge of the screen.
The inputed screen coordiate was exactly 0,0 but
the result coordinate was out of bound
during calculate matrix invert or etc.

To allow this case, let we take some epsilone value
during hit-test

Change-Id: I57db59a7bab4d57fb07aa087aa675f1c060f81fd
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months ago[Tizen] Fix viewport size when off-screen actor hittest 63/297763/2
Eunki, Hong [Thu, 24 Aug 2023 04:17:39 +0000 (13:17 +0900)]
[Tizen] Fix viewport size when off-screen actor hittest

This reverts commit 12d804c899eb642e2975d2232f54a3f72aa376db.

Change-Id: Ie76f1f653664c19d8bc4641c6c063776e13e4959

8 months agoRevert "[Tizen] Fix viewport size when off-screen actor hittest"
Eunki, Hong [Thu, 24 Aug 2023 04:17:33 +0000 (13:17 +0900)]
Revert "[Tizen] Fix viewport size when off-screen actor hittest"

This reverts commit 4e006cff288fe55c354611d79c58792263badd78.

8 months ago[Tizen] Fix viewport size when off-screen actor hittest
Eunki, Hong [Tue, 22 Aug 2023 02:37:11 +0000 (11:37 +0900)]
[Tizen] Fix viewport size when off-screen actor hittest

There was some miss-conversion of screen coordinate
when we use offscreen rendering.

Since hit-test algorithm use converted-screen-coordinate
by inputMappingActor, we also need to use inputMappingActor
when we use viewport value.

Change-Id: I2b1995a1b8e47b600239dcfb6e0380124e484f2f
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months ago[Tizen] Fix some keyframes devel api crash issue 07/297707/1
Eunki, Hong [Wed, 21 Jun 2023 03:27:49 +0000 (12:27 +0900)]
[Tizen] Fix some keyframes devel api crash issue

There was some nullptr error for some DevelKeyFrames API.

1. Let we allow to call GetKeyFrameCount even we never call Add.
2. Let we only change value if keyframe type is same as SetKeyFrameValue type.

Change-Id: I6a53648df3e19556c8462fbd4fd39340dc593373
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months ago[Tizen] To Caching UniformMap per node/renderer/program triple. 17/296817/3
seungho baek [Wed, 19 Jul 2023 08:30:46 +0000 (17:30 +0900)]
[Tizen] To Caching UniformMap per node/renderer/program triple.

Change-Id: I67dee410688be3f5e0e7e2911fdaa89b66354938
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
8 months ago[Tizen] Change the naming of RenderPass to RenderPassTag for Shader and RenderTask 16/296816/3
seungho baek [Fri, 16 Jun 2023 09:05:49 +0000 (18:05 +0900)]
[Tizen] Change the naming of RenderPass to RenderPassTag for Shader and RenderTask

Change-Id: I7c4f7f24fdb7d13f202be317899e915e73f979cd
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
8 months ago[Tizen] Support multi pass shading with different shaders 15/296815/3
seungho baek [Fri, 9 Jun 2023 13:00:09 +0000 (22:00 +0900)]
[Tizen] Support multi pass shading with different shaders

Change-Id: I34ac0d2dd0d63b316816bfa58954c739e7460e55
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
8 months ago[Tizen] Use Dali::KeyFrames during AnimateBetween 16/296916/3
Eunki, Hong [Fri, 9 Jun 2023 02:19:29 +0000 (11:19 +0900)]
[Tizen] Use Dali::KeyFrames during AnimateBetween

Since KeyFrames is already BaseHandle, we don't need to use
reference of BaseHandle. So let we make BaseHandle instead of
Internal::KeyFrames.

Change-Id: I32d79aa382dde45af07bb3ded376c37fcdbfe629
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months ago[Tizen] Make Ubuntu use MSAA level 4 as default 14/296814/3
Eunki, Hong [Wed, 31 May 2023 23:52:05 +0000 (08:52 +0900)]
[Tizen] Make Ubuntu use MSAA level 4 as default

Change-Id: I116b05deac366c47533d4e232d42ad3a1c06c785
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
8 months ago[Tizen] Added element_count for sampler uniform arrays. 15/296915/2
David Steele [Wed, 19 Apr 2023 16:22:19 +0000 (17:22 +0100)]
[Tizen] Added element_count for sampler uniform arrays.

Graphics interface didn't differentiate between non-array uniforms
and uniform array elements. Added element_count to show that.

(Used mainly in graphics backend implementation).

Change-Id: I7f3d9eead85dc029e93337c88bb38de1ce3e2fa5

10 months ago[Tizen] Fix partial update issue when change texture 67/293867/2 accepted/tizen/7.0/unified/20230623.162702 accepted/tizen/7.0/unified/20230719.171756 accepted/tizen/7.0/unified/20230811.173917
Heeyong Song [Mon, 29 Mar 2021 09:07:20 +0000 (18:07 +0900)]
[Tizen] Fix partial update issue when change texture

Uploading texture or changing texture were not detected.

Change-Id: I390b4ee8c26167a2daa9ab3dc25acb47ae6ceeb7

10 months ago[Tizen] LookAt API for actor 50/293850/2 accepted/tizen/7.0/unified/20230608.164733 accepted/tizen/7.0/unified/20230615.051447 accepted/tizen/7.0/unified/20230615.061139
Eunki, Hong [Tue, 28 Mar 2023 08:04:39 +0000 (17:04 +0900)]
[Tizen] LookAt API for actor

Make LookAt API for common Actor.
Note, this isn't follow target position. Just calculate Quaternion
and apply instancely.

Change-Id: I0fb107f954034fb5aa410cc607122b4e61988e9b
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
11 months ago[Tizen] Fix error when RenderTask is not matched with consumed layer 55/293255/1 accepted/tizen/7.0/unified/20230526.164247
Eunki, Hong [Fri, 19 May 2023 06:35:09 +0000 (15:35 +0900)]
[Tizen] Fix error when RenderTask is not matched with consumed layer

Change-Id: I6f3dfefdbf04025c1dfd87f5a9945ba392663fe7
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
11 months ago[Tizen] Fix a clipping mode bug 85/293185/2
Heeyong Song [Fri, 19 May 2023 10:02:59 +0000 (19:02 +0900)]
[Tizen] Fix a clipping mode bug

Clipping had a bug when it is used with the DrawMode::OVERLAY_2D.
The node should be added to the overlayRenderables.

Change-Id: I2464ec54551927249cdf8d23ed4e6ebf2a79615f

11 months ago[Tizen] Remove forceProcess and forceUpdate flag 62/293162/1
Heeyong Song [Thu, 18 May 2023 08:30:03 +0000 (17:30 +0900)]
[Tizen] Remove forceProcess and forceUpdate flag

We don't need them now because we change to process events regardless of state

Change-Id: I0416a79c4fdbb8aa12b2be5cabeb3da525216a6c

11 months ago[Tizen] bug fixed mMinimumTouchEventsAfterStart to mMinimumTouchEvents 02/293002/1
joogab.yun [Thu, 18 May 2023 02:23:04 +0000 (11:23 +0900)]
[Tizen] bug fixed mMinimumTouchEventsAfterStart to mMinimumTouchEvents

Change-Id: I62e4d181e8bf847e57b84757f2ec3083c4c4061d

11 months ago[Tizen] Fix invalidated PipelineCacheL2 pointer problem 31/292731/3 accepted/tizen/7.0/unified/20230515.132831 accepted/tizen/7.0/unified/20230515.152734
Eunki, Hong [Fri, 12 May 2023 04:15:13 +0000 (13:15 +0900)]
[Tizen] Fix invalidated PipelineCacheL2 pointer problem

Let we keep std::list<PipelineCacheL2>::iterator instead of PipelineCacheL2*.

So, the pointer of pipeline what render-renderer has should be valid even
if cache container size changed.

And also, for safe issue, let we keep the pipeline container as std::list.

Change-Id: I5a0572f040ff3304876bdb2483af85ff26fbccbb
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
11 months ago[Tizen] Fix culling issue with scale 64/292664/3
seungho baek [Thu, 11 May 2023 04:58:42 +0000 (13:58 +0900)]
[Tizen] Fix culling issue with scale

Change-Id: I46418d927ee21bc72b94aeae7e8ae4068b46d6be
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
11 months ago[Tizen] Remove old pipeline caches 67/292667/2
Heeyong Song [Mon, 8 May 2023 05:59:15 +0000 (14:59 +0900)]
[Tizen] Remove old pipeline caches

Change-Id: I17290e72f05cecedfce82dc665217c38a99a8470

11 months ago[Tizen] Fix to unused Z component to zero to get scale. 54/292654/1
seungho baek [Thu, 11 May 2023 01:07:41 +0000 (10:07 +0900)]
[Tizen] Fix to unused Z component to zero to get scale.

Change-Id: Ibd07450e6fdd39d15cd5e90b8c8c0994cde3d589
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
11 months ago[Tizen] Reduce Bezier Curve AlphaFunction's tolerance 45/292545/1
Eunki, Hong [Wed, 10 May 2023 00:07:31 +0000 (09:07 +0900)]
[Tizen] Reduce Bezier Curve AlphaFunction's tolerance

Previously, we use the tolerance of T value as 0.001f.
That mean, In 4K system, the error range of result can be ~2 pixels.

Let we squeeze the tolerance so reduce the numeric error.

Change-Id: I7d08de0bce8f2bac3441cb8a0bd4e5b55a31b989
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
11 months ago[Tizen] Add Touch source type for gesture 28/292528/1
joogab.yun [Tue, 9 May 2023 06:37:02 +0000 (15:37 +0900)]
[Tizen] Add Touch source type for gesture

Change-Id: Ib3782eb3e7125e045b469b314641de4cec7901c6

11 months ago[Tizen] Support Animation Blend for AnimateBetween 50/292450/2
seungho baek [Wed, 26 Apr 2023 13:01:15 +0000 (22:01 +0900)]
[Tizen] Support Animation Blend for AnimateBetween

Change-Id: Ifa53a54742239d8c2913499de2e29757bf8e9f72
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
11 months ago[Tizen] Sort Animator only if required. 49/292449/2
Eunki, Hong [Mon, 27 Feb 2023 13:09:34 +0000 (22:09 +0900)]
[Tizen] Sort Animator only if required.

Previously, we sort mConnectorTargetValues every Play() API.
Even if we don't need to sort it.

Now, make we sort that container only if last inserted value is bigger than
latest thing, and reset the flag if we sort.

Change-Id: Ia2ba07df3db5a2a0d6d89b0ef2854c5fc655fb2a
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
11 months ago[Tizen] Set KeyFrame's frame value 65/292265/1
Eunki, Hong [Thu, 27 Apr 2023 02:37:18 +0000 (11:37 +0900)]
[Tizen] Set KeyFrame's frame value

Let we make the API to change the value of specific KeyFrame data

Change-Id: Iecd9cb3b9118083dfa6d4ab812bf31dac4e1d38a
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
12 months ago[Tizen] Add SetTapRecognizerTime 19/291919/1 accepted/tizen/7.0/unified/20230428.015840 accepted/tizen/7.0/unified/20230428.170427
joogab.yun [Mon, 24 Apr 2023 09:13:38 +0000 (18:13 +0900)]
[Tizen] Add SetTapRecognizerTime

This is the time from touch down to touch up to recognize a tap gesture.

If set to 300ms, a touch up after a touch down must occur within 300ms to be recognized as a tap gesture.

Change-Id: I1b7be723938a32f4009232553671bda17503c782

12 months ago[Tizen] Allow to load uint32_t indices for geometry 85/291685/1 accepted/tizen/7.0/unified/20230424.020508
Eunki Hong [Sat, 18 Feb 2023 11:06:24 +0000 (20:06 +0900)]
[Tizen] Allow to load uint32_t indices for geometry

Dali's default indices use uint16_t. But if heavy 3D model who need more than
65536 indexes loaded, It will break index.

This patch make Scene3D can allow to use uint32_t type indeces load
and generete Geometry by it.

Change-Id: I020b27642760e6262fb5137a74e59b8da803e859
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
12 months ago[Tizen] Backport some MatrixUtils Operation 63/291663/2
Eunki Hong [Sat, 4 Feb 2023 04:08:53 +0000 (13:08 +0900)]
[Tizen] Backport some MatrixUtils Operation

This is a combination of 3 commits.

Optimize some matrix multiply for projection matrix + Orthographic reflection

Let we use MatrixUtils::MultiplyProjectionMatrix for some internal API.

And also, make Orthographic camera can use reflection plane.

TODO : We should make MultiplyProjectionMatrix funtion as NEON.

Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Fix matrix multiply with quaternion bug in ARM

There was some bug when we try to use MatrixUtils::Multiply at
ARM devices. We fix it.

Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
Multiply only for Transform Matrix + NEON comment clean up

If 4x4 matrix form as Transform, we can optimize matrix multiply function.
It will be reduce the time of Transform Update time.

Below are some test result.
1. VLD1.F32 each time is more faster than VLDM.
2. Transpose lhs -> multply -> transpose tmp is slower than current logic
3. "+r"(temp) at Output Operand is slower than "r"(temp) Intput Oprerand with "%r0"(why?)
 --> But when we make current Multiply with Output Operand as Input Operand, it makes slow down. (why?)

Change-Id: I3eb7f4b2e0b4ce7ae595e3e006d86ed63eee4529
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
12 months ago[Tizen] (DR) Fix texture binding 48/291648/1
Heeyong Song [Fri, 29 Jul 2022 02:35:32 +0000 (11:35 +0900)]
[Tizen] (DR) Fix texture binding

Backporting of GLView Direct rendering feature

Change-Id: I5eda9a16c769354485934c54136561d731e12ebe

12 months ago[Tizen] Add Post Constraint that works after transform 05/291605/1
seungho baek [Tue, 18 Apr 2023 11:05:14 +0000 (20:05 +0900)]
[Tizen] Add Post Constraint that works after transform

Change-Id: I90a7b2d731623691915ed5c01500ac6928d25112
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
12 months ago[Tizen] Add some performace trace logs 26/291226/1 accepted/tizen/7.0/unified/20230418.141935
Heeyong Song [Wed, 12 Apr 2023 05:18:50 +0000 (14:18 +0900)]
[Tizen] Add some performace trace logs

Change-Id: Ib99c88e4420d0c6bc200de4c65f75e2294f30a36

12 months ago[Tizen] Add trace log for touch, wheel and gesture 20/290920/2 accepted/tizen/7.0/unified/20230407.155830
joogab.yun [Wed, 5 Apr 2023 02:20:53 +0000 (11:20 +0900)]
[Tizen] Add trace log for touch, wheel and gesture

Change-Id: Iaf3a78103d123d4c81a9668497663cc14947ed44

12 months ago[Tizen] The hover event now starts in the STARTED state when a new actor is encountered. 20/290720/1 accepted/tizen/7.0/unified/20230403.235554 accepted/tizen/7.0/unified/20230404.033728
joogab.yun [Mon, 27 Mar 2023 09:56:08 +0000 (18:56 +0900)]
[Tizen] The hover event now starts in the STARTED state when a new actor is encountered.

When hover event is registered, only motion comes. You can't know that the hover has started on that actor.
So, when the hover starts on the new actor, set it to STARTED state.

Change-Id: If25595536bce2279529847056ed962c515632165

13 months ago[Tizen] Fix surface deletion order issue 88/289888/1 accepted/tizen/7.0/unified/20230330.014302
Heeyong Song [Wed, 22 Feb 2023 08:37:31 +0000 (17:37 +0900)]
[Tizen] Fix surface deletion order issue

Change-Id: I1fb3a2934ed6a36553421f002d6cc7821abc45dc

13 months ago[Tizen] Make mTargetSizeDirtyFlag true when Animation changes Actor's Size 23/289023/2 accepted/tizen/7.0/unified/20230302.015540 accepted/tizen/7.0/unified/20230327.042624
seungho baek [Mon, 27 Feb 2023 09:25:14 +0000 (18:25 +0900)]
[Tizen] Make mTargetSizeDirtyFlag true when Animation changes Actor's Size

Change-Id: Ied85413cd3bf8f8fc7d19c831e35f700e225c9f4
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
14 months ago[Tizen] Disable property notification when the object is deleted 06/288606/1 accepted/tizen/7.0/unified/20230223.015613
Heeyong Song [Mon, 20 Feb 2023 08:10:26 +0000 (17:10 +0900)]
[Tizen] Disable property notification when the object is deleted

Change-Id: Ief68d6cb246e75f9f9870f5285dc827b53ad2916

14 months ago[Tizen] Make new CameraActor creation API for 3D apps 41/288541/1
Eunki, Hong [Fri, 17 Feb 2023 06:38:05 +0000 (15:38 +0900)]
[Tizen] Make new CameraActor creation API for 3D apps

Default CameraActor's behavior is not helpful for formal 3D app side.
For example, 3D app don't care about "scene", but CameraActor::New()
change some properties by engine side automaticaly.

To make 3D app developer use CameraActor easly, make new API that fit
good to 3D cases.

Change-Id: Iaf2a792b0fd98cd31d2c655da61918133e211ff0
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
14 months ago[Tizen] Backport tizen_7.5 for Scene3D 78/287878/1
Eunki, Hong [Mon, 24 Oct 2022 06:04:28 +0000 (15:04 +0900)]
[Tizen] Backport tizen_7.5 for Scene3D

This is a combination of 3 commits.

Deprecate Plane Distance setter + Implement OrthographicSize + Animatable AspectRatio

Deprecate API s.t Left/Right/Top/Bottom value setter directly.
Instead of these things, let we use OrthographicSize.
It will make that each plane distnaces symmetric so that center of camera.

Due to we can disconnect dependency of plane distance parameters,
now we can make AspectRatio animatable.

Revert "[Tizen] Fix opacity animation issue in 3D"

Add Renderer::BlendMode::USE_ACTOR_OPACITY

 - This option make the renderer opaque only when its Actor::Color is opaque.

Change-Id: I7a9a90205bf76fc5e1ff8f0e90171211d27cc1cf
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
14 months ago[Tizen] Fix to do not use GetCurrentSize in actor-sizer 49/287649/1 accepted/tizen/7.0/unified/20230203.164137 accepted/tizen/7.0/unified/20230213.171726
seungho baek [Fri, 23 Dec 2022 07:40:31 +0000 (16:40 +0900)]
[Tizen] Fix to do not use GetCurrentSize in actor-sizer

Change-Id: I75c0502a33dcb67e90092b1a8a92e9cf9f6bbe37
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
14 months ago[Tizen] Do not register processor when registering singleton 15/287615/1
Heeyong Song [Wed, 1 Feb 2023 06:54:08 +0000 (15:54 +0900)]
[Tizen] Do not register processor when registering singleton

Change-Id: I31353cf1d513a40f82def9a5f0de3540b88c34dc

15 months ago[Tizen] Add Overlay Layer in scene 08/286908/3
seungho baek [Mon, 9 Jan 2023 01:23:21 +0000 (10:23 +0900)]
[Tizen] Add Overlay Layer in scene

Change-Id: I65447d7ace9e13f528f244234e139e3e9682291b
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
15 months ago[Tizen] Assert when proprety notification is used in a thread other than the main... 13/287013/1
Heeyong Song [Wed, 18 Jan 2023 06:46:16 +0000 (15:46 +0900)]
[Tizen] Assert when proprety notification is used in a thread other than the main thread

Change-Id: I9b2f6c1f70327c5289f1e9476d48876d5ecd762b

15 months ago[Tizen] Fix the screen rotation issue 87/286387/2 accepted/tizen/7.0/unified/20230106.165622 accepted/tizen/7.0/unified/20230118.093753
Wonsik Jung [Tue, 3 Jan 2023 03:09:13 +0000 (12:09 +0900)]
[Tizen] Fix the screen rotation issue

Fix the screen rotation issue in FHub Device.
When glViewport/glScissor is set, the screen rotation should be considered.

Change-Id: I660545a3b3b0fa8e5464dfb613a3d983be2e04b7

15 months ago[Tizen] Make assertion when SetParent is not called on the main thread 76/286076/1 accepted/tizen/7.0/unified/20221228.170438
Heeyong Song [Tue, 27 Dec 2022 07:06:52 +0000 (16:06 +0900)]
[Tizen] Make assertion when SetParent is not called on the main thread

Change-Id: I31735e43f33995b0d3e39fb489a5f4e77abf0899

16 months ago[Tizen] Add trace log to NotificationManager::ProcessMessages 57/285857/1
Heeyong Song [Wed, 21 Dec 2022 09:13:50 +0000 (18:13 +0900)]
[Tizen] Add trace log to NotificationManager::ProcessMessages

Change-Id: I8a7d3080087ef29448e3ac4b9ce333ce93e08e99

16 months agoMerge "[Tizen] Add trace log to FrameCallbackProcessor::Update" into tizen_7.0
Heeyong Song [Mon, 19 Dec 2022 07:51:22 +0000 (07:51 +0000)]
Merge "[Tizen] Add trace log to FrameCallbackProcessor::Update" into tizen_7.0

16 months ago[Tizen] Reduce GetCurrentSize call time 37/285737/1
Eunki, Hong [Mon, 19 Dec 2022 06:59:13 +0000 (15:59 +0900)]
[Tizen] Reduce GetCurrentSize call time

Change-Id: I1a22b4d86ad97856a14aa367f1b3d4b62b7e31bf
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
16 months ago[Tizen] Add trace log to FrameCallbackProcessor::Update 17/285717/1
Heeyong Song [Mon, 19 Dec 2022 01:59:45 +0000 (10:59 +0900)]
[Tizen] Add trace log to FrameCallbackProcessor::Update

Change-Id: I68f66b12400082d477518d6376c37ed53f144b4a

16 months ago[Tizen] Change DebugPriority name and Debug priority 09/285709/1
Heeyong Song [Thu, 15 Dec 2022 09:09:41 +0000 (18:09 +0900)]
[Tizen] Change DebugPriority name and Debug priority

Change-Id: I01dc0b22802a66b51d4ad3fb338b270c7d810142

16 months ago[Tizen] Fix opacity animation issue in 3D 06/285406/3
seungho baek [Mon, 12 Dec 2022 08:26:26 +0000 (17:26 +0900)]
[Tizen] Fix opacity animation issue in 3D

Change-Id: Id663f1254511bcb21df8d86b655f60bde969021f
Signed-off-by: seungho baek <sbsh.baek@samsung.com>
16 months ago[Tizen] Fix partial update issue 53/285453/1
Heeyong Song [Tue, 13 Dec 2022 06:00:32 +0000 (15:00 +0900)]
[Tizen] Fix partial update issue

Fixed the case there are 3D and 2D layers

Change-Id: Ie36922355bf979c5961bb9e7c12cde44a5644116

16 months ago[Tizen] Remove keylogging for security 79/285379/1
Eunki Hong [Sat, 10 Dec 2022 11:29:56 +0000 (20:29 +0900)]
[Tizen] Remove keylogging for security

Remove keylogging action in tizen.

Change-Id: I91e2df30c95d4e7ca0e4d6d68acf2b40700edf48
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
17 months ago[Tizen] Add MultiSampling FrameBuffer implement. 68/284568/1 accepted/tizen/7.0/unified/20221128.015437
Eunki, Hong [Fri, 11 Nov 2022 13:39:21 +0000 (22:39 +0900)]
[Tizen] Add MultiSampling FrameBuffer implement.

Let we allow to call FramebufferTexture2DMultisample if possible.

Change-Id: I4874ad78dfe1e468b5571ba4bc0112e7f710f492
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
17 months ago[Tizen] Enable Trace Filter with 0/1 54/284254/1 accepted/tizen/7.0/unified/20221117.014400
Heeyong Song [Mon, 14 Nov 2022 06:14:29 +0000 (15:14 +0900)]
[Tizen] Enable Trace Filter with 0/1

Change-Id: Ibe5ac416fff314fbb4a54b648df60763e5233533

17 months ago[Tizen] Fix Rendering order issue when 3D layer render translucent 25/284125/2
Eunki, Hong [Wed, 9 Nov 2022 08:35:15 +0000 (17:35 +0900)]
[Tizen] Fix Rendering order issue when 3D layer render translucent

Sort rendering-order by Euclidean distance for special case.

Previously, we only check ModelView's translation z-value.
But if we use perspective projectoin camera, the distance might not
be fit as human sense.

Now, when layer is 3D and camera is perspective projection mode,
let we use zValue as Euclidean distance.

It cannot resolve translucent object's rendering order issue
perfectly. But can resolve some case.

Change-Id: Ie33cc5cfd338ff001b18885026a4daf779227b0e
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
17 months ago[Tizen] Fix Svace issue for 64bit 11/283911/1
Eunki, Hong [Fri, 4 Nov 2022 14:43:25 +0000 (23:43 +0900)]
[Tizen] Fix Svace issue for 64bit

Solve some convert from size_t to uint32_t case.

Change-Id: I486feb48eab38201aaae3bf9f2aadc0414789a5d
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
17 months ago[Tizen] Not execute the remove callback accepted/tizen/7.0/unified/20221103.165443 accepted/tizen/7.0/unified/20221110.061315
tscholb [Wed, 2 Nov 2022 07:39:51 +0000 (16:39 +0900)]
[Tizen] Not execute the remove callback

This reverts commit 9cc8a09ae13612360ee6546f5c21792b4a674324.

17 months agoMerge branch 'devel/master' into tizen
tscholb [Wed, 2 Nov 2022 07:39:19 +0000 (16:39 +0900)]
Merge branch 'devel/master' into tizen

17 months agoRevert "[Tizen] Not execute the remove callback"
tscholb [Wed, 2 Nov 2022 07:39:02 +0000 (16:39 +0900)]
Revert "[Tizen] Not execute the remove callback"

This reverts commit a39edce44df267275a0edb060fe2a2c3790734e6.

17 months agoRevert "[Tizen] Fix Window Rotation issue"
tscholb [Wed, 2 Nov 2022 07:38:54 +0000 (16:38 +0900)]
Revert "[Tizen] Fix Window Rotation issue"

This reverts commit 9643232d147ac0dbca37d9649c498defab6a9dab.

17 months agoRevert "[Tizen] Create ProjectionDirection property at CameraActor"
tscholb [Wed, 2 Nov 2022 07:38:47 +0000 (16:38 +0900)]
Revert "[Tizen] Create ProjectionDirection property at CameraActor"

This reverts commit 6e1aebb198e5075227e4656ed5a5cef02c99139a.

17 months agoRevert "[Tizen](Partial Update) Continue to calculate damaged rects even though there...
tscholb [Wed, 2 Nov 2022 07:38:37 +0000 (16:38 +0900)]
Revert "[Tizen](Partial Update) Continue to calculate damaged rects even though there is a 3D transformed item"

This reverts commit c96b5bf70c4a411d3916be6cab7a761f8bf91811.

17 months agoRevert "[Tizen] Add some logs to check performance"
tscholb [Wed, 2 Nov 2022 07:38:20 +0000 (16:38 +0900)]
Revert "[Tizen] Add some logs to check performance"

This reverts commit 84d96e087438998f24e16ffd69b24183e629298f.

17 months agoMerge "Add input source type and source data about Gesture. This is similar to MouseB...
joogab yun [Tue, 1 Nov 2022 00:36:42 +0000 (00:36 +0000)]
Merge "Add input source type and source data about Gesture. This is similar to MouseButton in TouchEvent." into devel/master

17 months agoAdd input source type and source data about Gesture. 68/283368/19
joogab.yun [Tue, 25 Oct 2022 08:21:50 +0000 (17:21 +0900)]
Add input source type and source data about Gesture.
This is similar to MouseButton in TouchEvent.

Now, you can see from which input the gesture was made.

Change-Id: Id1289e1482b21e756ebd5a549b7d8e9d1b1e19b7

17 months agoMerge "DALi Version 2.1.46" into devel/master
David Steele [Fri, 28 Oct 2022 10:27:24 +0000 (10:27 +0000)]
Merge "DALi Version 2.1.46" into devel/master

17 months agoDALi Version 2.1.46 47/283547/1 dali_2.1.46
Richard Huang [Fri, 28 Oct 2022 10:25:08 +0000 (11:25 +0100)]
DALi Version 2.1.46

Change-Id: Iea538285d3d930a4c440db70b8b02b94e5c6558e

17 months agoMerge "Fix race-condition when window is resized or rotated." into devel/master
Wonsik Jung [Fri, 28 Oct 2022 01:00:04 +0000 (01:00 +0000)]
Merge "Fix race-condition when window is resized or rotated." into devel/master

17 months agoMerge "Seperate some matrix operations to MatrixUtils" into devel/master
David Steele [Thu, 27 Oct 2022 13:28:59 +0000 (13:28 +0000)]
Merge "Seperate some matrix operations to MatrixUtils" into devel/master

18 months agoEnsure GlAbstraction is not copyable 86/283386/1
Adeel Kazmi [Tue, 25 Oct 2022 14:07:14 +0000 (15:07 +0100)]
Ensure GlAbstraction is not copyable

Change-Id: I95f40a776255ebfbba57d9761b3660dd3984b918

18 months agoFix race-condition when window is resized or rotated. 70/281870/9
Wonsik Jung [Thu, 22 Sep 2022 21:45:00 +0000 (06:45 +0900)]
Fix race-condition when window is resized or rotated.

Internal dali window module has some variables and flags.
They are set by both main thread and render thread.
It has the effect of race condition when window is resized or rotated serval times.
This patch is to fix them.

Change-Id: I63ecc4a5d711569323a8f055e3b46ae878126235

18 months agoSeperate some matrix operations to MatrixUtils 51/283151/18
Eunki, Hong [Wed, 19 Oct 2022 05:33:36 +0000 (14:33 +0900)]
Seperate some matrix operations to MatrixUtils

Move some static Matrix / Matrix3 operations into specific file.
Previous logic doesn't support multiply-asign operations.

 A = A * B; (valid. Because A operator=({result-of-(A*B)}))
 A *= B; (invalid)

To resolve this issue, we plan to implement another operator *= for Matrix.

To seperate codes more clean + If we plan to make some util API about Matrix
(something like Internal::MatrixUtils::MultiplyProjectionMatrix)
Make another file for matrix utils internal.

TODO : Internal::MatrixUtils::MultiplyProjectionMatrix use NEON.
TODO : Make projection matrix use MatrixUtils after camera refator finished

Change-Id: I4333c52c93fb24f618ed509fe101a83e4a9f36c1
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
18 months agoDALi Version 2.1.45 82/283282/1 dali_2.1.45
David Steele [Fri, 21 Oct 2022 10:47:16 +0000 (11:47 +0100)]
DALi Version 2.1.45

Change-Id: If04c629888d288e6c513666d8623e75c99a785f2

18 months agoAdd trace logs to check performance 24/283124/2
Heeyong Song [Tue, 18 Oct 2022 09:43:48 +0000 (18:43 +0900)]
Add trace logs to check performance

Change-Id: I441a332afb89b8527c34eeadc1e3c7b332caa789

18 months agoMake SceneGraph::Camera as Node + FieldOfView animatable 59/282859/12
Eunki, Hong [Wed, 12 Oct 2022 10:53:39 +0000 (19:53 +0900)]
Make SceneGraph::Camera as Node + FieldOfView animatable

Previously, SceneGraph::Camera was not a SceneGraph::Node.
If we try to animate property of Camera, then
we use some PropertyBase s.t. PropertyOwner(==Node) doesn't owned.

To fix this logical unmatched issue, we make SceneGraph::Camera
as sub-class of SceneGraph::Node.

Moreover, We make Camera's FieldOfView Animatable.

After this patch merged, we try to refactor Camera's properties
and make them animatable.

Change-Id: I184f75b51a2152aea52879adc1e783cea7d190a0
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>