From: David Steele Date: Fri, 10 Feb 2023 16:18:38 +0000 (+0000) Subject: Merge "Added rotation support to frame-callback" into devel/master X-Git-Tag: dali_2.2.14~5 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d3138f08f1f35c0b1af14d0e3bea4531b3988fce;hp=b6e1dd6c18d7a336b30e08e22eab775121c20ff3;p=platform%2Fcore%2Fuifw%2Fdali-core.git Merge "Added rotation support to frame-callback" into devel/master --- diff --git a/automated-tests/src/dali/dali-test-suite-utils/test-graphics-buffer.cpp b/automated-tests/src/dali/dali-test-suite-utils/test-graphics-buffer.cpp index 27f0dce..42b53b1 100644 --- a/automated-tests/src/dali/dali-test-suite-utils/test-graphics-buffer.cpp +++ b/automated-tests/src/dali/dali-test-suite-utils/test-graphics-buffer.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Samsung Electronics Co., Ltd. + * Copyright (c) 2023 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -61,11 +61,11 @@ void TestGraphicsBuffer::Upload(uint32_t offset, uint32_t size) if(size <= memory.size() && mCreated) { // Use subData to avoid re-allocation - mGl.BufferSubData(GetTarget(), offset, size, &memory[offset]); + mGl.BufferSubData(GetTarget(), static_cast(static_cast(offset)), static_cast(static_cast(size)), &memory[offset]); } else { - mGl.BufferData(GetTarget(), GLsizeiptr(size), &memory[0], GL_STATIC_DRAW); //@todo Query - do we need other usages? + mGl.BufferData(GetTarget(), static_cast(static_cast(size)), &memory[0], GL_STATIC_DRAW); //@todo Query - do we need other usages? mCreated = true; } } diff --git a/automated-tests/src/dali/utc-Dali-Actor.cpp b/automated-tests/src/dali/utc-Dali-Actor.cpp index 1745226..69e13e8 100644 --- a/automated-tests/src/dali/utc-Dali-Actor.cpp +++ b/automated-tests/src/dali/utc-Dali-Actor.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2022 Samsung Electronics Co., Ltd. + * Copyright (c) 2023 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -29,6 +29,7 @@ #include #include // For FLT_MAX +#include // For std::multiset #include #include "assert.h" @@ -297,6 +298,53 @@ struct CulledPropertyNotificationFunctor PropertyNotification& mPropertyNotification; }; +// Check dirtyRect is equal with expected multiset. +// Note that the order of damagedRect is not important +struct RectSorter +{ + bool operator()(const Rect& lhs, const Rect& rhs) const + { + if(lhs.x != rhs.x) + { + return lhs.x < rhs.x; + } + if(lhs.y != rhs.y) + { + return lhs.y < rhs.y; + } + if(lhs.width != rhs.width) + { + return lhs.width < rhs.width; + } + return lhs.height < rhs.height; + } +}; + +void DirtyRectChecker(const std::vector>& damagedRects, std::multiset, RectSorter> expectedRectList, bool checkRectsExact, const char* testLocation) +{ + // Just check damagedRect contain all expectRectList. + DALI_TEST_GREATER(damagedRects.size() + 1u, expectedRectList.size(), testLocation); + + for(auto& rect : damagedRects) + { + auto iter = expectedRectList.find(rect); + if(iter != expectedRectList.end()) + { + expectedRectList.erase(iter); + } + else if(checkRectsExact) + { + std::ostringstream o; + o << rect << " exist in expectRectList" << std::endl; + fprintf(stderr, "Test failed in %s, checking %s", testLocation, o.str().c_str()); + tet_result(TET_FAIL); + } + } + + // Check all rects are matched + DALI_TEST_EQUALS(expectedRectList.empty(), true, testLocation); +} + } // anonymous namespace //& purpose: Testing New API @@ -1167,7 +1215,7 @@ int UtcDaliActorSetSize05(void) Vector2 size = parent.GetProperty(Actor::Property::SIZE).Get(); DALI_TEST_EQUALS(size, vector, Math::MACHINE_EPSILON_0, TEST_LOCATION); - Actor child = Actor::New(); + Actor child = Actor::New(); DALI_TEST_CHECK(vector != child.GetCurrentProperty(Actor::Property::SIZE)); child.SetProperty(Actor::Property::SIZE, vector); size = parent.GetProperty(Actor::Property::SIZE).Get(); @@ -8703,8 +8751,8 @@ int utcDaliActorPartialUpdate(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - clippingRect = Rect(16, 768, 32, 32); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + clippingRect = Rect(16, 768, 32, 32); // in screen coordinates + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); DALI_TEST_EQUALS(clippingRect.y, glScissorParams.y, TEST_LOCATION); @@ -8720,8 +8768,8 @@ int utcDaliActorPartialUpdate(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - clippingRect = Rect(16, 752, 48, 48); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + clippingRect = Rect(16, 752, 48, 48); // in screen coordinates + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); DALI_TEST_EQUALS(clippingRect.y, glScissorParams.y, TEST_LOCATION); @@ -8737,8 +8785,8 @@ int utcDaliActorPartialUpdate(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - clippingRect = Rect(16, 736, 64, 64); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + clippingRect = Rect(16, 736, 64, 64); // in screen coordinates + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); DALI_TEST_EQUALS(clippingRect.y, glScissorParams.y, TEST_LOCATION); @@ -8807,8 +8855,8 @@ int utcDaliActorPartialUpdateSetColor(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - clippingRect = Rect(16, 768, 32, 32); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + clippingRect = Rect(16, 768, 32, 32); // in screen coordinates + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); DALI_TEST_EQUALS(clippingRect.y, glScissorParams.y, TEST_LOCATION); @@ -8832,8 +8880,8 @@ int utcDaliActorPartialUpdateSetColor(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - clippingRect = Rect(16, 768, 32, 32); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + clippingRect = Rect(16, 768, 32, 32); // in screen coordinates + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); DALI_TEST_EQUALS(clippingRect.y, glScissorParams.y, TEST_LOCATION); @@ -8907,8 +8955,8 @@ int utcDaliActorPartialUpdateSetProperty(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - clippingRect = Rect(16, 768, 32, 32); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + clippingRect = Rect(16, 768, 32, 32); // in screen coordinates + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); DALI_TEST_EQUALS(clippingRect.y, glScissorParams.y, TEST_LOCATION); @@ -8923,7 +8971,7 @@ int utcDaliActorPartialUpdateSetProperty(void) application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); DALI_TEST_EQUALS(clippingRect.y, glScissorParams.y, TEST_LOCATION); @@ -8944,7 +8992,7 @@ int utcDaliActorPartialUpdateSetProperty(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); clippingRect = Rect(16, 752, 32, 48); // new clipping rect size increased due to change in actor size - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); DALI_TEST_EQUALS(clippingRect.y, glScissorParams.y, TEST_LOCATION); @@ -8989,8 +9037,7 @@ int utcDaliActorPartialUpdateTwoActors(void) application.PreRenderWithPartialUpdate(TestApplication::DEFAULT_RENDER_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 2, TEST_LOCATION); - DALI_TEST_EQUALS>(Rect(64, 672, 64, 64), damagedRects[0], TEST_LOCATION); - DALI_TEST_EQUALS>(Rect(96, 592, 112, 112), damagedRects[1], TEST_LOCATION); + DirtyRectChecker(damagedRects, {Rect(64, 672, 64, 64), Rect(96, 592, 112, 112)}, true, TEST_LOCATION); // in screen coordinates, adaptor would calculate it using previous frames information Rect clippingRect = Rect(64, 592, 144, 192); @@ -9016,7 +9063,7 @@ int utcDaliActorPartialUpdateTwoActors(void) application.PreRenderWithPartialUpdate(TestApplication::DEFAULT_RENDER_INTERVAL, nullptr, damagedRects); DALI_TEST_CHECK(damagedRects.size() > 0); - DALI_TEST_EQUALS>(Rect(64, 672, 64, 64), damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {Rect(64, 672, 64, 64)}, false, TEST_LOCATION); // in screen coordinates, adaptor would calculate it using previous frames information application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9057,7 +9104,7 @@ int utcDaliActorPartialUpdateActorsWithSizeHint01(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); Rect clippingRect = Rect(32, 704, 80, 80); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9074,7 +9121,7 @@ int utcDaliActorPartialUpdateActorsWithSizeHint01(void) application.PreRenderWithPartialUpdate(TestApplication::DEFAULT_RENDER_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9095,7 +9142,7 @@ int utcDaliActorPartialUpdateActorsWithSizeHint01(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); clippingRect = Rect(64, 704, 48, 48); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9112,7 +9159,7 @@ int utcDaliActorPartialUpdateActorsWithSizeHint01(void) application.PreRenderWithPartialUpdate(TestApplication::DEFAULT_RENDER_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9133,7 +9180,7 @@ int utcDaliActorPartialUpdateActorsWithSizeHint01(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); clippingRect = Rect(0, 720, 80, 80); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9172,7 +9219,7 @@ int utcDaliActorPartialUpdateActorsWithSizeHint02(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); Rect clippingRect = Rect(48, 720, 48, 48); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9197,7 +9244,7 @@ int utcDaliActorPartialUpdateActorsWithSizeHint02(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); clippingRect = Rect(32, 704, 80, 80); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9223,7 +9270,7 @@ int utcDaliActorPartialUpdateActorsWithSizeHint02(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); clippingRect = Rect(32, 688, 96, 96); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9271,10 +9318,9 @@ int utcDaliActorPartialUpdateAnimation(void) DALI_TEST_EQUALS(damagedRects.size(), 2, TEST_LOCATION); // Aligned by 16 - expectedRect1 = Rect(0, 720, 96, 96); // in screen coordinates, includes 3 last frames updates - expectedRect2 = Rect(0, 784, 32, 32); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(expectedRect1, damagedRects[0], TEST_LOCATION); - DALI_TEST_EQUALS>(expectedRect2, damagedRects[1], TEST_LOCATION); + expectedRect1 = Rect(0, 720, 96, 96); // in screen coordinates, includes 1 last frames updates + expectedRect2 = Rect(0, 784, 32, 32); // in screen coordinates, includes 1 last frames updates + DirtyRectChecker(damagedRects, {expectedRect1, expectedRect2}, true, TEST_LOCATION); clippingRect = TestApplication::DEFAULT_SURFACE_RECT; application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9329,10 +9375,9 @@ int utcDaliActorPartialUpdateAnimation(void) application.PreRenderWithPartialUpdate(500, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 3, TEST_LOCATION); - // The first dirty rect is actor3's. - // We don't know the exact dirty rect of actor2 - DALI_TEST_EQUALS>(expectedRect2, damagedRects[0], TEST_LOCATION); - DALI_TEST_EQUALS>(expectedRect1, damagedRects[1], TEST_LOCATION); + // One of dirty rect is actor3's. + // We don't know the exact dirty rect of actor1 and actor2. + DirtyRectChecker(damagedRects, {expectedRect1, expectedRect2, expectedRect2}, true, TEST_LOCATION); clippingRect = TestApplication::DEFAULT_SURFACE_RECT; application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9381,7 +9426,7 @@ int utcDaliActorPartialUpdateChangeVisibility(void) // Aligned by 16 clippingRect = Rect(16, 768, 32, 32); // in screen coordinates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); DALI_TEST_EQUALS(clippingRect.y, glScissorParams.y, TEST_LOCATION); @@ -9402,7 +9447,7 @@ int utcDaliActorPartialUpdateChangeVisibility(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_CHECK(damagedRects.size() > 0); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, false, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); @@ -9417,7 +9462,7 @@ int utcDaliActorPartialUpdateChangeVisibility(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_CHECK(damagedRects.size() > 0); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, false, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); @@ -9459,8 +9504,8 @@ int utcDaliActorPartialUpdateOnOffScene(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - clippingRect = Rect(16, 768, 32, 32); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + clippingRect = Rect(16, 768, 32, 32); // in screen coordinates + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); DALI_TEST_EQUALS(clippingRect.y, glScissorParams.y, TEST_LOCATION); @@ -9485,7 +9530,7 @@ int utcDaliActorPartialUpdateOnOffScene(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_CHECK(damagedRects.size() > 0); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, false, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); @@ -9500,7 +9545,7 @@ int utcDaliActorPartialUpdateOnOffScene(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_CHECK(damagedRects.size() > 0); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, false, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); @@ -9542,8 +9587,8 @@ int utcDaliActorPartialUpdateSkipRendering(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - expectedRect1 = Rect(0, 720, 96, 96); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(expectedRect1, damagedRects[0], TEST_LOCATION); + expectedRect1 = Rect(0, 720, 96, 96); // in screen coordinates + DirtyRectChecker(damagedRects, {expectedRect1}, true, TEST_LOCATION); clippingRect = TestApplication::DEFAULT_SURFACE_RECT; application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9563,7 +9608,7 @@ int utcDaliActorPartialUpdateSkipRendering(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); - DALI_TEST_EQUALS>(expectedRect1, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {expectedRect1}, true, TEST_LOCATION); clippingRect = TestApplication::DEFAULT_SURFACE_RECT; application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9590,7 +9635,7 @@ int utcDaliActorPartialUpdateSkipRendering(void) drawTrace.Reset(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); - DALI_TEST_EQUALS>(expectedRect1, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {expectedRect1}, true, TEST_LOCATION); clippingRect = TestApplication::DEFAULT_SURFACE_RECT; application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -9643,7 +9688,7 @@ int utcDaliActorPartialUpdate3DNode(void) application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(TestApplication::DEFAULT_SURFACE_RECT, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {TestApplication::DEFAULT_SURFACE_RECT}, true, TEST_LOCATION); clippingRect = TestApplication::DEFAULT_SURFACE_RECT; drawTrace.Reset(); @@ -9673,7 +9718,7 @@ int utcDaliActorPartialUpdate3DNode(void) application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(TestApplication::DEFAULT_SURFACE_RECT, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {TestApplication::DEFAULT_SURFACE_RECT}, true, TEST_LOCATION); clippingRect = TestApplication::DEFAULT_SURFACE_RECT; drawTrace.Reset(); @@ -9720,8 +9765,8 @@ int utcDaliActorPartialUpdateNotRenderableActor(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - Rect clippingRect = Rect(16, 768, 32, 32); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + Rect clippingRect = Rect(16, 768, 32, 32); // in screen coordinates + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); @@ -9774,7 +9819,7 @@ int utcDaliActorPartialUpdateChangeTransparency(void) // Aligned by 16 Rect clippingRect = Rect(16, 768, 32, 32); // in screen coordinates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); @@ -9800,7 +9845,7 @@ int utcDaliActorPartialUpdateChangeTransparency(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); damagedRects.clear(); @@ -9819,7 +9864,7 @@ int utcDaliActorPartialUpdateChangeTransparency(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); damagedRects.clear(); @@ -9838,7 +9883,7 @@ int utcDaliActorPartialUpdateChangeTransparency(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); damagedRects.clear(); @@ -9857,7 +9902,7 @@ int utcDaliActorPartialUpdateChangeTransparency(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); damagedRects.clear(); @@ -9876,7 +9921,7 @@ int utcDaliActorPartialUpdateChangeTransparency(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_CHECK(damagedRects.size() > 0); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, false, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); damagedRects.clear(); @@ -9895,7 +9940,7 @@ int utcDaliActorPartialUpdateChangeTransparency(void) damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); END_TEST; @@ -9938,8 +9983,8 @@ int utcDaliActorPartialUpdateChangeParentOpacity(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - Rect clippingRect = Rect(16, 768, 32, 32); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + Rect clippingRect = Rect(16, 768, 32, 32); // in screen coordinates + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); @@ -9968,7 +10013,7 @@ int utcDaliActorPartialUpdateChangeParentOpacity(void) application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_CHECK(damagedRects.size() > 0); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, false, TEST_LOCATION); END_TEST; } @@ -10003,8 +10048,8 @@ int utcDaliActorPartialUpdateAddRemoveRenderer(void) DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); // Aligned by 16 - Rect clippingRect = Rect(16, 768, 32, 32); // in screen coordinates, includes 3 last frames updates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + Rect clippingRect = Rect(16, 768, 32, 32); // in screen coordinates + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); @@ -10031,7 +10076,7 @@ int utcDaliActorPartialUpdateAddRemoveRenderer(void) application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_CHECK(damagedRects.size() > 0); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, false, TEST_LOCATION); damagedRects.clear(); application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); @@ -10050,7 +10095,7 @@ int utcDaliActorPartialUpdateAddRemoveRenderer(void) application.PreRenderWithPartialUpdate(TestApplication::RENDER_FRAME_INTERVAL, nullptr, damagedRects); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); END_TEST; } @@ -10095,8 +10140,7 @@ int utcDaliActorPartialUpdate3DTransform(void) // Aligned by 16 Rect clippingRect1 = Rect(16, 768, 32, 32); // in screen coordinates Rect clippingRect2 = Rect(160, 624, 32, 32); - DALI_TEST_EQUALS>(clippingRect1, damagedRects[0], TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect2, damagedRects[1], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect1, clippingRect2}, true, TEST_LOCATION); Rect surfaceRect = Rect(0, 0, TestApplication::DEFAULT_SURFACE_WIDTH, TestApplication::DEFAULT_SURFACE_HEIGHT); application.RenderWithPartialUpdate(damagedRects, surfaceRect); @@ -10125,7 +10169,7 @@ int utcDaliActorPartialUpdate3DTransform(void) // Should update full area surfaceRect = Rect(0, 0, TestApplication::DEFAULT_SURFACE_WIDTH, TestApplication::DEFAULT_SURFACE_HEIGHT); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(surfaceRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {surfaceRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, surfaceRect); // Add actor2 again @@ -10139,7 +10183,7 @@ int utcDaliActorPartialUpdate3DTransform(void) // Should update full area surfaceRect = Rect(0, 0, TestApplication::DEFAULT_SURFACE_WIDTH, TestApplication::DEFAULT_SURFACE_HEIGHT); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(surfaceRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {surfaceRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, surfaceRect); // Reset the orientation of actor1 @@ -10153,7 +10197,7 @@ int utcDaliActorPartialUpdate3DTransform(void) // Should update full area surfaceRect = Rect(0, 0, TestApplication::DEFAULT_SURFACE_WIDTH, TestApplication::DEFAULT_SURFACE_HEIGHT); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(surfaceRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {surfaceRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, surfaceRect); // Make actor2 dirty @@ -10166,7 +10210,7 @@ int utcDaliActorPartialUpdate3DTransform(void) clippingRect2 = Rect(160, 608, 48, 48); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect2, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect2}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect2); DALI_TEST_EQUALS(clippingRect2.x, glScissorParams.x, TEST_LOCATION); @@ -10198,7 +10242,7 @@ int utcDaliActorPartialUpdate3DTransform(void) // Should update full area surfaceRect = Rect(0, 0, TestApplication::DEFAULT_SURFACE_WIDTH, TestApplication::DEFAULT_SURFACE_HEIGHT); DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(surfaceRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {surfaceRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, surfaceRect); END_TEST; @@ -10244,8 +10288,7 @@ int utcDaliActorPartialUpdateOneActorMultipleRenderers(void) // Aligned by 16 Rect clippingRect = Rect(16, 768, 32, 32); // in screen coordinates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[1], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect, clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); @@ -10271,7 +10314,7 @@ int utcDaliActorPartialUpdateOneActorMultipleRenderers(void) clippingRect = Rect(16, 768, 32, 32); // in screen coordinates DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -10293,7 +10336,7 @@ int utcDaliActorPartialUpdateOneActorMultipleRenderers(void) clippingRect = Rect(16, 768, 32, 32); // in screen coordinates DALI_TEST_EQUALS(damagedRects.size(), 1, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -10348,8 +10391,7 @@ int utcDaliActorPartialUpdateMultipleActorsOneRenderer(void) // Aligned by 16 Rect clippingRect = Rect(16, 768, 32, 32); // in screen coordinates - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[1], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect, clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); DALI_TEST_EQUALS(clippingRect.x, glScissorParams.x, TEST_LOCATION); @@ -10375,8 +10417,7 @@ int utcDaliActorPartialUpdateMultipleActorsOneRenderer(void) clippingRect = Rect(16, 768, 32, 32); // in screen coordinates DALI_TEST_EQUALS(damagedRects.size(), 2, TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[0], TEST_LOCATION); - DALI_TEST_EQUALS>(clippingRect, damagedRects[1], TEST_LOCATION); + DirtyRectChecker(damagedRects, {clippingRect, clippingRect}, true, TEST_LOCATION); application.RenderWithPartialUpdate(damagedRects, clippingRect); @@ -11735,7 +11776,7 @@ int UtcDaliActorCalculateWorldTransform08(void) application.GetScene().Add(rootActor); rootActor.Add(leafActor); - for(uint32_t i = 0; i< 8; ++i) + for(uint32_t i = 0; i < 8; ++i) { leafActor[Actor::Property::INHERIT_POSITION] = testCases[i].translation; leafActor[Actor::Property::INHERIT_ORIENTATION] = testCases[i].rotation; diff --git a/dali/internal/event/common/thread-local-storage.cpp b/dali/internal/event/common/thread-local-storage.cpp index 86e848d..077355d 100644 --- a/dali/internal/event/common/thread-local-storage.cpp +++ b/dali/internal/event/common/thread-local-storage.cpp @@ -196,12 +196,6 @@ void ThreadLocalStorage::Register(const std::type_info& info, BaseHandle singlet { DALI_LOG_SINGLETON_SERVICE(Debug::General, "Singleton Added: %s\n", info.name()); mSingletonContainer.push_back(SingletonPair(info.name(), singleton)); - - Integration::Processor* processor = dynamic_cast(&singleton.GetBaseObject()); - if(processor) - { - mCore->RegisterProcessor(*processor); - } } } diff --git a/dali/internal/render/common/render-manager.cpp b/dali/internal/render/common/render-manager.cpp index 2cd5efc..3a1466d 100644 --- a/dali/internal/render/common/render-manager.cpp +++ b/dali/internal/render/common/render-manager.cpp @@ -522,12 +522,11 @@ void RenderManager::PreRender(Integration::Scene& scene, std::vector>& DamagedRectsCleaner damagedRectCleaner(damagedRects, surfaceRect); bool cleanDamagedRect = false; - // Mark previous dirty rects in the sorted array. The array is already sorted by node and renderer, frame number. - // so you don't need to sort: std::stable_sort(itemsDirtyRects.begin(), itemsDirtyRects.end()); - std::vector& itemsDirtyRects = sceneObject->GetItemsDirtyRects(); - for(DirtyRect& dirtyRect : itemsDirtyRects) + // Mark previous dirty rects in the std::unordered_map. + Scene::ItemsDirtyRectsContainer& itemsDirtyRects = sceneObject->GetItemsDirtyRects(); + for(auto& dirtyRectPair : itemsDirtyRects) { - dirtyRect.visited = false; + dirtyRectPair.second.visited = false; } uint32_t instructionCount = sceneObject->GetRenderInstructions().Count(mImpl->renderBufferIndex); @@ -607,24 +606,24 @@ void RenderManager::PreRender(Integration::Scene& scene, std::vector>& cleanDamagedRect = true; // Save the full rect in the damaged list. We need it when this item is removed - DirtyRect dirtyRect(item.mNode, item.mRenderer, surfaceRect); - auto dirtyRectPos = std::lower_bound(itemsDirtyRects.begin(), itemsDirtyRects.end(), dirtyRect); - if(dirtyRectPos != itemsDirtyRects.end() && dirtyRectPos->node == item.mNode && dirtyRectPos->renderer == item.mRenderer) + DirtyRectKey dirtyRectKey(item.mNode, item.mRenderer); + auto dirtyRectPos = itemsDirtyRects.find(dirtyRectKey); + if(dirtyRectPos != itemsDirtyRects.end()) { // Replace the rect - dirtyRectPos->visited = true; - dirtyRectPos->rect = dirtyRect.rect; + dirtyRectPos->second.visited = true; + dirtyRectPos->second.rect = surfaceRect; } else { - // Else, just insert the new dirtyrect in the correct position - itemsDirtyRects.insert(dirtyRectPos, dirtyRect); + // Else, just insert the new dirtyrect + itemsDirtyRects.insert({dirtyRectKey, surfaceRect}); } continue; } - Rect rect; - DirtyRect dirtyRect(item.mNode, item.mRenderer, rect); + Rect rect; + DirtyRectKey dirtyRectKey(item.mNode, item.mRenderer); // If the item refers to updated node or renderer. if(item.mIsUpdated || (item.mNode && @@ -647,22 +646,22 @@ void RenderManager::PreRender(Integration::Scene& scene, std::vector>& rect.height = ((bottom + 16) / 16) * 16 - rect.y; // Found valid dirty rect. - dirtyRect.rect = rect; - auto dirtyRectPos = std::lower_bound(itemsDirtyRects.begin(), itemsDirtyRects.end(), dirtyRect); - - if(dirtyRectPos != itemsDirtyRects.end() && dirtyRectPos->node == item.mNode && dirtyRectPos->renderer == item.mRenderer) + auto dirtyRectPos = itemsDirtyRects.find(dirtyRectKey); + if(dirtyRectPos != itemsDirtyRects.end()) { + Rect currentRect = rect; + // Same item, merge it with the previous rect - rect.Merge(dirtyRectPos->rect); + rect.Merge(dirtyRectPos->second.rect); - // Replace the rect - dirtyRectPos->visited = true; - dirtyRectPos->rect = dirtyRect.rect; + // Replace the rect as current + dirtyRectPos->second.visited = true; + dirtyRectPos->second.rect = currentRect; } else { - // Else, just insert the new dirtyrect in the correct position - itemsDirtyRects.insert(dirtyRectPos, dirtyRect); + // Else, just insert the new dirtyrect + itemsDirtyRects.insert({dirtyRectKey, rect}); } damagedRects.push_back(rect); @@ -672,16 +671,15 @@ void RenderManager::PreRender(Integration::Scene& scene, std::vector>& { // 1. The item is not dirty, the node and renderer referenced by the item are still exist. // 2. Mark the related dirty rects as visited so they will not be removed below. - auto dirtyRectPos = std::lower_bound(itemsDirtyRects.begin(), itemsDirtyRects.end(), dirtyRect); - if(dirtyRectPos != itemsDirtyRects.end() && dirtyRectPos->node == item.mNode && dirtyRectPos->renderer == item.mRenderer) + auto dirtyRectPos = itemsDirtyRects.find(dirtyRectKey); + if(dirtyRectPos != itemsDirtyRects.end()) { - dirtyRectPos->visited = true; + dirtyRectPos->second.visited = true; } else { // The item is not in the list for some reason. Add it! - dirtyRect.rect = surfaceRect; - itemsDirtyRects.insert(dirtyRectPos, dirtyRect); + itemsDirtyRects.insert({dirtyRectKey, surfaceRect}); cleanDamagedRect = true; // And make full update at this frame } } @@ -693,24 +691,20 @@ void RenderManager::PreRender(Integration::Scene& scene, std::vector>& } // Check removed nodes or removed renderers dirty rects - auto i = itemsDirtyRects.begin(); - auto j = itemsDirtyRects.begin(); - while(i != itemsDirtyRects.end()) + // Note, std::unordered_map end iterator is validate if we call erase. + for(auto iter = itemsDirtyRects.cbegin(), iterEnd = itemsDirtyRects.cend(); iter != iterEnd;) { - if(i->visited) + if(!iter->second.visited) { - *j++ = *i; + damagedRects.push_back(iter->second.rect); + iter = itemsDirtyRects.erase(iter); } else { - Rect& dirtRect = i->rect; - damagedRects.push_back(dirtRect); + ++iter; } - i++; } - itemsDirtyRects.resize(j - itemsDirtyRects.begin()); - if(!cleanDamagedRect) { damagedRectCleaner.SetCleanOnReturn(false); diff --git a/dali/internal/update/common/scene-graph-scene.cpp b/dali/internal/update/common/scene-graph-scene.cpp index 198299a..7313724 100644 --- a/dali/internal/update/common/scene-graph-scene.cpp +++ b/dali/internal/update/common/scene-graph-scene.cpp @@ -176,7 +176,7 @@ bool Scene::IsSurfaceRectChanged() void Scene::SetSurfaceOrientations(int32_t windowOrientation, int32_t screenOrienation) { mSurfaceOrientation = windowOrientation; - mScreenOrientation = screenOrienation; + mScreenOrientation = screenOrienation; if(mRoot) { @@ -208,7 +208,7 @@ bool Scene::IsRotationCompletedAcknowledgementSet() return setRotationCompletedAcknowledgement; } -std::vector& Scene::GetItemsDirtyRects() +Scene::ItemsDirtyRectsContainer& Scene::GetItemsDirtyRects() { return mItemsDirtyRects; } diff --git a/dali/internal/update/common/scene-graph-scene.h b/dali/internal/update/common/scene-graph-scene.h index 057ba16..d004f16 100644 --- a/dali/internal/update/common/scene-graph-scene.h +++ b/dali/internal/update/common/scene-graph-scene.h @@ -17,6 +17,10 @@ * limitations under the License. */ +// EXTERNAL INCLUDE +#include +#include + // INTERNAL INCLUDES #include #include @@ -27,6 +31,7 @@ #include // RendererKey #include #include +#include namespace Dali { @@ -37,39 +42,59 @@ namespace SceneGraph class RenderInstructionContainer; class Node; -struct DirtyRect +struct DirtyRectKey { - DirtyRect(Node* node, Render::RendererKey renderer, Rect& rect) + DirtyRectKey(Node* node, Render::RendererKey renderer) : node(node), - renderer(renderer), - rect(rect), - visited(true) + renderer(renderer) { } - DirtyRect() = default; + DirtyRectKey() = default; - bool operator<(const DirtyRect& rhs) const + bool operator==(const DirtyRectKey& rhs) const { - if(node == rhs.node) - { - return renderer.Value() < rhs.renderer.Value(); - } - else + return node == rhs.node && renderer == rhs.renderer; + } + + struct DirtyRectKeyHash + { + // Reference by : https://stackoverflow.com/a/21062236 + std::size_t operator()(DirtyRectKey const& key) const noexcept { - return node < rhs.node; + constexpr std::size_t nodeShift = Dali::Log<1 + sizeof(Node)>::value; + constexpr std::size_t rendererShift = Dali::Log<1 + sizeof(Render::Renderer)>::value; + + constexpr std::size_t zitterShift = sizeof(std::size_t) * 4; // zitter shift to avoid hash collision + + return ((reinterpret_cast(key.node) >> nodeShift) << zitterShift) ^ + (key.renderer.Value() >> rendererShift); } - } + }; Node* node{nullptr}; Render::RendererKey renderer{}; - Rect rect{}; - bool visited{true}; +}; + +struct DirtyRectValue +{ + DirtyRectValue(Rect& rect) + : rect(rect), + visited(true) + { + } + + DirtyRectValue() = default; + + Rect rect{}; + bool visited{true}; }; class Scene { public: + using ItemsDirtyRectsContainer = std::unordered_map; + /** * Constructor * @param[in] surface The render surface @@ -276,7 +301,7 @@ public: * * @return the ItemsDirtyRects */ - std::vector& GetItemsDirtyRects(); + ItemsDirtyRectsContainer& GetItemsDirtyRects(); private: // Render instructions describe what should be rendered during RenderManager::RenderScene() @@ -312,8 +337,8 @@ private: SceneGraph::Layer* mRoot{nullptr}; ///< Root node - std::vector mClearValues{}; ///< Clear colors - std::vector mItemsDirtyRects{}; ///< Dirty rect list + std::vector mClearValues{}; ///< Clear colors + ItemsDirtyRectsContainer mItemsDirtyRects{}; ///< Dirty rect list }; /// Messages diff --git a/dali/public-api/dali-core-version.cpp b/dali/public-api/dali-core-version.cpp index 428dbb2..d235d1f 100644 --- a/dali/public-api/dali-core-version.cpp +++ b/dali/public-api/dali-core-version.cpp @@ -27,7 +27,7 @@ namespace Dali { const uint32_t CORE_MAJOR_VERSION = 2; const uint32_t CORE_MINOR_VERSION = 2; -const uint32_t CORE_MICRO_VERSION = 11; +const uint32_t CORE_MICRO_VERSION = 13; const char* const CORE_BUILD_DATE = __DATE__ " " __TIME__; #ifdef DEBUG_ENABLED diff --git a/packaging/dali.spec b/packaging/dali.spec index 02f07a4..df6fd07 100644 --- a/packaging/dali.spec +++ b/packaging/dali.spec @@ -1,6 +1,6 @@ Name: dali2 Summary: DALi 3D Engine -Version: 2.2.11 +Version: 2.2.13 Release: 1 Group: System/Libraries License: Apache-2.0 and BSD-3-Clause and MIT