From 95e9e4c0bbbb9cdd7277ec6500590f0051cb9f98 Mon Sep 17 00:00:00 2001 From: Adeel Kazmi Date: Tue, 14 Jul 2020 13:24:13 +0100 Subject: [PATCH] (Window) Remove GetRenderTaskList from Devel API as it's been added to the Public API Change-Id: If56d69fd8c39463801cdbfe5cb40df4b7b74e3ba --- dali/devel-api/adaptor-framework/window-devel.cpp | 5 ----- dali/devel-api/adaptor-framework/window-devel.h | 8 -------- 2 files changed, 13 deletions(-) diff --git a/dali/devel-api/adaptor-framework/window-devel.cpp b/dali/devel-api/adaptor-framework/window-devel.cpp index cd0819f..62904ec 100644 --- a/dali/devel-api/adaptor-framework/window-devel.cpp +++ b/dali/devel-api/adaptor-framework/window-devel.cpp @@ -73,11 +73,6 @@ void SetPositionSize( Window window, PositionSize positionSize ) GetImplementation( window ).SetPositionSize( positionSize ); } -Dali::RenderTaskList GetRenderTaskList( Window window ) -{ - return GetImplementation( window ).GetRenderTaskList(); -} - Window Get( Actor actor ) { return Internal::Adaptor::Window::Get( actor ); diff --git a/dali/devel-api/adaptor-framework/window-devel.h b/dali/devel-api/adaptor-framework/window-devel.h index b70876d..8b19720 100644 --- a/dali/devel-api/adaptor-framework/window-devel.h +++ b/dali/devel-api/adaptor-framework/window-devel.h @@ -100,14 +100,6 @@ DALI_ADAPTOR_API Window New(Any surface, PositionSize windowPosition, const std: DALI_ADAPTOR_API void SetPositionSize( Window window, PositionSize positionSize ); /** - * @brief Retrieves the list of render-tasks in the window. - * - * @param[in] window The window instance - * @return A valid handle to a RenderTaskList - */ -DALI_ADAPTOR_API Dali::RenderTaskList GetRenderTaskList( Window window ); - -/** * @brief Retrieve the window that the given actor is added to. * * @param[in] actor The actor -- 2.7.4