d0d237932011dd5dd42200f51c0500c1e4ffadc8
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / common / adaptor-impl.h
1 #ifndef DALI_INTERNAL_ADAPTOR_IMPL_H
2 #define DALI_INTERNAL_ADAPTOR_IMPL_H
3
4 /*
5  * Copyright (c) 2020 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/common/vector-wrapper.h>
23 #include <dali/public-api/common/view-mode.h>
24 #include <dali/public-api/math/rect.h>
25 #include <dali/public-api/signals/callback.h>
26 #include <dali/public-api/math/uint-16-pair.h>
27 #include <dali/integration-api/render-controller.h>
28
29 // INTERNAL INCLUDES
30 #include <dali/public-api/adaptor-framework/tts-player.h>
31 #include <dali/devel-api/adaptor-framework/clipboard.h>
32 #include <dali/integration-api/scene.h>
33 #include <dali/integration-api/adaptor-framework/adaptor.h>
34 #include <dali/integration-api/adaptor-framework/scene-holder-impl.h>
35 #include <dali/integration-api/adaptor-framework/trigger-event-factory.h>
36 #include <dali/internal/adaptor/common/adaptor-internal-services.h>
37 #include <dali/internal/graphics/common/graphics-interface.h>
38 #include <dali/internal/legacy/common/tizen-platform-abstraction.h>
39 #include <dali/internal/network/common/socket-factory.h>
40 #include <dali/internal/system/common/core-event-interface.h>
41 #include <dali/internal/system/common/environment-options.h>
42 #include <dali/internal/system/common/kernel-trace.h>
43 #include <dali/internal/system/common/system-trace.h>
44 #include <dali/internal/window-system/common/damage-observer.h>
45 #include <dali/internal/window-system/common/window-visibility-observer.h>
46
47 namespace Dali
48 {
49
50 class RenderSurfaceInterface;
51
52 namespace Integration
53 {
54 class Core;
55 class GlAbstraction;
56 class Processor;
57 }
58
59 namespace Internal
60 {
61
62 namespace Adaptor
63 {
64 class DisplayConnection;
65 class GraphicsFactory;
66 class GlImplementation;
67 class GlSyncImplementation;
68 class ThreadController;
69 class TriggerEvent;
70 class CallbackManager;
71 class FeedbackPluginProxy;
72 class FeedbackController;
73 class VSyncMonitor;
74 class PerformanceInterface;
75 class LifeCycleObserver;
76 class ObjectProfiler;
77 class SceneHolder;
78 class ConfigurationManager;
79
80 /**
81  * Implementation of the Adaptor class.
82  */
83 class Adaptor : public Integration::RenderController,
84                 public AdaptorInternalServices,
85                 public CoreEventInterface,
86                 public DamageObserver,
87                 public WindowVisibilityObserver
88 {
89 public:
90
91   using AdaptorSignalType =  Dali::Adaptor::AdaptorSignalType;
92   using WindowCreatedSignalType = Dali::Adaptor::WindowCreatedSignalType;
93
94   using SurfaceSize = Uint16Pair;          ///< Surface size type
95
96   /**
97    * Creates a New Adaptor
98    * @param[in]  window              The window handle
99    * @param[in]  surface             A render surface can be one of the following
100    *                                  - Pixmap, adaptor will use existing Pixmap to draw on to
101    *                                  - Window, adaptor will use existing Window to draw on to
102    * @param[in]  configuration       The context loss configuration ( to choose resource discard policy )
103    * @param[in]  environmentOptions  A pointer to the environment options. If NULL then one is created.
104    */
105   static Dali::Adaptor* New( Dali::Integration::SceneHolder window,
106                              Dali::RenderSurfaceInterface* surface,
107                              Dali::Configuration::ContextLoss configuration,
108                              EnvironmentOptions* environmentOptions );
109
110   /**
111    * Creates a New Adaptor
112    * @param[in]  window              The window handle
113    * @param[in]  configuration       The context loss configuration ( to choose resource discard policy )
114    * @param[in]  environmentOptions  A pointer to the environment options. If NULL then one is created.
115    */
116   static Dali::Adaptor* New( Dali::Integration::SceneHolder window,
117                              Dali::Configuration::ContextLoss configuration,
118                              EnvironmentOptions* environmentOptions );
119
120   /**
121    * Creates a New Adaptor
122    * @param[in]  graphicsFactory     A factory that creates the graphics interface
123    * @param[in]  window              The window handle
124    * @param[in]  surface             A render surface can be one of the following
125    *                                  - Pixmap, adaptor will use existing Pixmap to draw on to
126    *                                  - Window, adaptor will use existing Window to draw on to
127    * @param[in]  configuration       The context loss configuration ( to choose resource discard policy )
128    * @param[in]  environmentOptions  A pointer to the environment options. If NULL then one is created.
129    */
130   static Dali::Adaptor* New( GraphicsFactory& graphicsFactory,
131                              Dali::Integration::SceneHolder window,
132                              Dali::RenderSurfaceInterface* surface,
133                              Dali::Configuration::ContextLoss configuration,
134                              EnvironmentOptions* environmentOptions );
135
136   /**
137    * Creates a New Adaptor
138    * @param[in]  graphicsFactory     A factory that creates the graphics interface
139    * @param[in]  window              The window handle
140    * @param[in]  configuration       The context loss configuration ( to choose resource discard policy )
141    * @param[in]  environmentOptions  A pointer to the environment options. If NULL then one is created.
142    */
143   static Dali::Adaptor* New( GraphicsFactory& graphicsFactory,
144                              Dali::Integration::SceneHolder window,
145                              Dali::Configuration::ContextLoss configuration,
146                              EnvironmentOptions* environmentOptions );
147
148   /**
149    * 2-step initialisation, this should be called after creating an adaptor instance.
150    * @param[in]  graphicsFactory     A factory that creates the graphics interface
151    * @param[in]  configuration       The context loss configuration ( to choose resource discard policy )
152    */
153   void Initialize( GraphicsFactory& graphicsFactory, Dali::Configuration::ContextLoss configuration );
154
155   /**
156    * Virtual destructor.
157    */
158   virtual ~Adaptor();
159
160   /**
161    * @copydoc Dali::Adaptor::Get()
162    */
163   static Dali::Adaptor& Get();
164
165   /**
166    * @copydoc Dali::Adaptor::IsAvailable()
167    */
168   static bool IsAvailable();
169
170   /**
171    * @copydoc Dali::Core::SceneCreated();
172    */
173   void SceneCreated();
174
175 public: // AdaptorInternalServices implementation
176   /**
177    * @copydoc Dali::Adaptor::Start()
178    */
179   virtual void Start();
180
181   /**
182    * @copydoc Dali::Adaptor::Pause()
183    */
184   virtual void Pause();
185
186   /**
187    * @copydoc Dali::Adaptor::Resume()
188    */
189   virtual void Resume();
190
191   /**
192    * @copydoc Dali::Adaptor::Stop()
193    */
194   virtual void Stop();
195
196   /**
197    * @copydoc Dali::Adaptor::ContextLost()
198    */
199   virtual void ContextLost();
200
201   /**
202    * @copydoc Dali::Adaptor::ContextRegained()
203    */
204   virtual void ContextRegained();
205
206   /**
207    * @copydoc Dali::EventFeeder::FeedTouchPoint()
208    */
209   virtual void FeedTouchPoint( TouchPoint& point, int timeStamp );
210
211   /**
212    * @copydoc Dali::EventFeeder::FeedWheelEvent()
213    */
214   virtual void FeedWheelEvent( WheelEvent& wheelEvent );
215
216   /**
217    * @copydoc Dali::EventFeeder::FeedKeyEvent()
218    */
219   virtual void FeedKeyEvent( KeyEvent& keyEvent );
220
221   /**
222    * @copydoc Dali::Adaptor::ReplaceSurface()
223    */
224   virtual void ReplaceSurface( Dali::Integration::SceneHolder window, Dali::RenderSurfaceInterface& surface );
225
226   /**
227    * @copydoc Dali::Adaptor::GetSurface()
228    */
229   virtual Dali::RenderSurfaceInterface& GetSurface() const;
230
231   /**
232    * @copydoc Dali::Adaptor::ReleaseSurfaceLock()
233    */
234   virtual void ReleaseSurfaceLock();
235
236   /**
237    * Retrieve the TtsPlayer.
238    * @param[in] mode The mode of TtsPlayer
239    * @return A handle to the TtsPlayer.
240    */
241   virtual Dali::TtsPlayer GetTtsPlayer(Dali::TtsPlayer::Mode mode);
242
243   /**
244    * @copydoc Dali::Adaptor::AddIdle()
245    */
246   virtual bool AddIdle( CallbackBase* callback, bool hasReturnValue, bool forceAdd );
247
248   /**
249    * Adds a new Window instance to the Adaptor
250    * @param[in]  childWindow The child window instance
251    * @param[in]  childWindowName The child window title/name
252    * @param[in]  childWindowClassName The class name that the child window belongs to
253    * @param[in]  childWindowMode The mode of the child window
254    */
255   virtual bool AddWindow( Dali::Integration::SceneHolder childWindow,
256                           const std::string& childWindowName,
257                           const std::string& childWindowClassName,
258                           bool childWindowMode );
259
260   /**
261    * Removes an existing Window instance from the Adaptor
262    * @param[in]  window The Window instance
263    */
264   virtual bool RemoveWindow( Dali::Integration::SceneHolder* childWindow );
265
266   /**
267    * Removes an existing Window instance from the Adaptor
268    * @param[in]  windowName The Window name
269    * @note If two Windows have the same name, the first one that matches will be removed
270    */
271   virtual bool RemoveWindow( std::string childWindowName );
272
273   /**
274    * @copydoc Dali::Adaptor::RemoveIdle()
275    */
276   virtual void RemoveIdle( CallbackBase* callback );
277
278   /**
279    * @copydoc Dali::Adaptor::ProcessIdle()
280    */
281   virtual void ProcessIdle();
282
283   /**
284    * Sets a pre-render callback.
285    */
286   void SetPreRenderCallback( CallbackBase* callback );
287
288   /**
289    * Removes an existing Window instance from the Adaptor
290    * @param[in]  childWindow The Window instance
291    */
292   bool RemoveWindow( Dali::Internal::Adaptor::SceneHolder* childWindow );
293
294   /**
295    * @brief Deletes the rendering surface
296    * @param[in] surface to delete
297    */
298   void DeleteSurface( Dali::RenderSurfaceInterface& surface );
299
300   /**
301    * @brief Retrieve the window that the given actor is added to.
302    *
303    * @param[in] actor The actor
304    * @return The window the actor is added to or a null pointer if the actor is not added to any widnow.
305    */
306   Dali::Internal::Adaptor::SceneHolder* GetWindow( Dali::Actor& actor );
307
308   /**
309    * @copydoc Dali::Adaptor::GetWindows()
310    */
311   Dali::WindowContainer GetWindows() const;
312
313   /**
314    * @copydoc Dali::Adaptor::GetSceneHolders()
315    */
316   Dali::SceneHolderList GetSceneHolders() const;
317
318 public:
319
320   /**
321    * @return the Core instance
322    */
323   virtual Dali::Integration::Core& GetCore();
324
325   /**
326    * @copydoc Dali::Adaptor::SetRenderRefreshRate()
327    */
328   void SetRenderRefreshRate( unsigned int numberOfVSyncsPerRender );
329
330   /**
331    * Return the PlatformAbstraction.
332    * @return The PlatformAbstraction.
333    */
334   Integration::PlatformAbstraction& GetPlatformAbstraction() const;
335
336   /**
337    * Destroy the TtsPlayer of specific mode.
338    * @param[in] mode The mode of TtsPlayer to destroy
339    */
340   void DestroyTtsPlayer(Dali::TtsPlayer::Mode mode);
341
342   /**
343    * Gets native window handle
344    *
345    * @return native window handle
346    */
347   Any GetNativeWindowHandle();
348
349   /**
350    * @brief Retrieve native window handle that the given actor is added to.
351    *
352    * @param[in] actor The actor
353    * @return native window handle
354    */
355   Any GetNativeWindowHandle( Dali::Actor actor );
356
357   /**
358    * Get the native display associated with the graphics backend
359    *
360    * @return A handle to the native display
361    */
362   Any GetGraphicsDisplay();
363
364   /**
365    * Sets use remote surface for Surface output
366    * @param[in] useRemoteSurface True if the remote surface is used
367    */
368   void SetUseRemoteSurface(bool useRemoteSurface);
369
370 public:
371
372   /**
373    * Adds an adaptor observer so that we can observe the adaptor's lifetime events.
374    * @param[in]  observer  The observer.
375    * @note Observers should remove themselves when they are destroyed.
376    */
377   void AddObserver( LifeCycleObserver& observer );
378
379   /**
380    * Removes the observer from the adaptor.
381    * @param[in]  observer  The observer to remove.
382    * @note Observers should remove themselves when they are destroyed.
383    */
384   void RemoveObserver( LifeCycleObserver& observer );
385
386   /**
387    * Emits the Notification event to the Dali core.
388    */
389   void SendNotificationEvent();
390
391   /**
392    * Request adaptor to update once
393    */
394   void RequestUpdateOnce();
395
396   /**
397    * @copydoc Dali::Adaptor::NotifySceneCreated()
398    */
399   void NotifySceneCreated();
400
401   /**
402    * @copydoc Dali::Adaptor::NotifyLanguageChanged()
403    */
404   void NotifyLanguageChanged();
405
406   /**
407    * Gets AppId of current application
408    */
409   void GetAppId( std::string& appId );
410
411   /**
412    * @copydoc Dali::Adaptor::SurfaceResizePrepare
413    */
414   void SurfaceResizePrepare( Dali::RenderSurfaceInterface* surface, SurfaceSize surfaceSize );
415
416   /**
417    * @copydoc Dali::Adaptor::SurfaceResizeComplete
418    */
419   void SurfaceResizeComplete( Dali::RenderSurfaceInterface* surface, SurfaceSize surfaceSize );
420
421   /**
422    * Sets layout direction of root by system language
423    * @param[in] locale System locale
424    */
425   void SetRootLayoutDirection( std::string locale );
426
427   /**
428    * @copydoc Dali::Adaptor::RenderOnce
429    */
430   void RenderOnce();
431
432   /**
433    * @copydoc Dali::Adaptor::GetLogFactory
434    */
435   const LogFactoryInterface& GetLogFactory();
436
437   /**
438    * @copydoc Dali::Adaptor::RegisterProcessor
439    */
440   void RegisterProcessor( Integration::Processor& processor );
441
442   /**
443    * @coydoc Dali::Adaptor::UnregisterProcessor
444    */
445   void UnregisterProcessor( Integration::Processor& processor );
446
447   /**
448    * Check MultipleWindow is supported
449    */
450   bool IsMultipleWindowSupported() const;
451
452 public:  //AdaptorInternalServices
453
454   /**
455    * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetPlatformAbstractionInterface()
456    */
457   virtual Dali::Integration::PlatformAbstraction& GetPlatformAbstractionInterface();
458
459   /**
460    * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetDisplayConnectionInterface()
461    */
462   virtual Dali::DisplayConnection& GetDisplayConnectionInterface();
463
464   /**
465    * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetGraphicsInterface()
466    */
467   virtual GraphicsInterface& GetGraphicsInterface();
468
469   /**
470    * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetTriggerEventInterface()
471    */
472   virtual TriggerEventInterface& GetProcessCoreEventsTrigger();
473
474   /**
475    * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetSocketFactoryInterface()
476    */
477   virtual SocketFactoryInterface& GetSocketFactoryInterface();
478
479   /**
480    * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetRenderSurfaceInterface()
481    */
482   virtual Dali::RenderSurfaceInterface* GetRenderSurfaceInterface();
483
484   /**
485    * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetPerformanceInterface()
486    */
487   virtual PerformanceInterface* GetPerformanceInterface();
488
489   /**
490    * copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetKernelTraceInterface()
491    */
492   virtual TraceInterface& GetKernelTraceInterface();
493
494   /**
495    * copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetSystemTraceInterface()
496    */
497   virtual TraceInterface& GetSystemTraceInterface();
498
499   /**
500    * copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetWindowContainerInterface()
501    */
502   virtual void GetWindowContainerInterface( WindowContainer& windows );
503
504 public: // Signals
505
506   /**
507    * @copydoc Dali::Adaptor::SignalResized
508    */
509   AdaptorSignalType& ResizedSignal()
510   {
511     return mResizedSignal;
512   }
513
514   /**
515    * @copydoc Dali::Adaptor::LanguageChangedSignal
516    */
517   AdaptorSignalType& LanguageChangedSignal()
518   {
519     return mLanguageChangedSignal;
520   }
521
522   /**
523    * @copydoc Dali::Adaptor::WindowCreatedSignal
524    */
525   WindowCreatedSignalType& WindowCreatedSignal()
526   {
527     return mWindowCreatedSignal;
528   }
529
530 public: // From Dali::Internal::Adaptor::CoreEventInterface
531
532   /**
533    * @copydoc Dali::Internal::Adaptor:CoreEventInterface:::ProcessCoreEvents()
534    */
535   virtual void ProcessCoreEvents();
536
537 private: // From Dali::Internal::Adaptor::CoreEventInterface
538
539   /**
540    * @copydoc Dali::Internal::Adaptor::CoreEventInterface::QueueCoreEvent()
541    */
542   virtual void QueueCoreEvent(const Dali::Integration::Event& event);
543
544 private: // From Dali::Integration::RenderController
545
546   /**
547    * @copydoc Dali::Integration::RenderController::RequestUpdate()
548    */
549   virtual void RequestUpdate( bool forceUpdate );
550
551   /**
552    * @copydoc Dali::Integration::RenderController::RequestProcessEventsOnIdle()
553    */
554   virtual void RequestProcessEventsOnIdle( bool forceProcess );
555
556 public: // From Dali::Internal::Adaptor::WindowVisibilityObserver
557
558   /**
559    * Called when the window becomes fully or partially visible.
560    */
561   virtual void OnWindowShown();
562
563   /**
564    * Called when the window is fully hidden.
565    */
566   virtual void OnWindowHidden();
567
568 private: // From Dali::Internal::Adaptor::DamageObserver
569
570   /**
571    * @copydoc Dali::Internal::Adaptor::DamageObserver::OnDamaged()
572    */
573   void OnDamaged( const DamageArea& area );
574
575 private:
576
577   // Undefined
578   Adaptor(const Adaptor&) = delete;
579   Adaptor& operator=(Adaptor&) = delete;
580
581 private:
582
583   /**
584    * Assigns the render surface to the adaptor
585    *
586    */
587   void SetSurface(Dali::RenderSurfaceInterface *surface);
588
589   /**
590    * called after surface is created
591    */
592   void SurfaceInitialized();
593
594   /**
595    * Sends an notification message from main loop idle handler
596    */
597   bool ProcessCoreEventsFromIdle();
598
599   /**
600    * Gets path for data/resource storage.
601    * @param[out] path Path for data/resource storage
602    */
603   void GetDataStoragePath(std::string& path);
604
605   /**
606    * Sets up system information if needs
607    */
608   void SetupSystemInformation();
609
610   /**
611    * Adds a callback to be run when entering an idle state.
612    *
613    * A callback of the following type should be used:
614    * @code
615    *   bool MyFunction();
616    * @endcode
617    * This callback will be called repeatedly as long as it returns true. A return of 0 deletes this callback.
618    */
619   bool AddIdleEnterer( CallbackBase* callback, bool forceAdd );
620
621   /**
622    * Removes a previously added the idle enterer callback.
623    */
624   void RemoveIdleEnterer( CallbackBase* callback );
625
626 private:
627
628   /**
629    * Constructor
630    * @param[in]  window       window handle
631    * @param[in]  adaptor      The public adaptor
632    * @param[in]  surface      A render surface can be one of the following
633    *                          - Pixmap, adaptor will use existing Pixmap to draw on to
634    *                          - Window, adaptor will use existing Window to draw on to
635    * @param[in]  environmentOptions  A pointer to the environment options. If NULL then one is created.
636    */
637   Adaptor( Dali::Integration::SceneHolder window, Dali::Adaptor& adaptor, Dali::RenderSurfaceInterface* surface, EnvironmentOptions* environmentOptions );
638
639 private: // Types
640
641   enum State
642   {
643     READY,                     ///< Initial state before Adaptor::Start is called.
644     RUNNING,                   ///< Adaptor is running.
645     PAUSED,                    ///< Adaptor has been paused.
646     PAUSED_WHILE_HIDDEN,       ///< Adaptor is paused while window is hidden (& cannot be resumed until window is shown).
647     PAUSED_WHILE_INITIALIZING, ///< Adaptor is paused while application is initializing.
648     STOPPED,                   ///< Adaptor has been stopped.
649   };
650
651   // There is no weak handle for BaseHandle in DALi, but we can't ref count the window here,
652   // so we have to store the raw pointer.
653   using WindowContainer = std::vector<Dali::Internal::Adaptor::SceneHolder*>;
654   using ObserverContainer = std::vector<LifeCycleObserver*>;
655
656 private: // Data
657
658   AdaptorSignalType                     mResizedSignal;               ///< Resized signal.
659   AdaptorSignalType                     mLanguageChangedSignal;       ///< Language changed signal.
660   WindowCreatedSignalType               mWindowCreatedSignal;    ///< Window created signal.
661
662   Dali::Adaptor&                        mAdaptor;                     ///< Reference to public adaptor instance.
663   State                                 mState;                       ///< Current state of the adaptor
664   Dali::Integration::Core*              mCore;                        ///< Dali Core
665   ThreadController*                     mThreadController;            ///< Controls the threads
666
667   GraphicsInterface*                    mGraphics;                    ///< Graphics interface
668   Dali::DisplayConnection*              mDisplayConnection;           ///< Display connection
669   WindowContainer                       mWindows;                     ///< A container of all the Windows that are currently created
670
671   std::unique_ptr<ConfigurationManager> mConfigurationManager;        ///< Configuration manager
672
673   TizenPlatform::TizenPlatformAbstraction* mPlatformAbstraction;      ///< Platform abstraction
674
675   CallbackManager*                      mCallbackManager;             ///< Used to install callbacks
676   bool                                  mNotificationOnIdleInstalled; ///< whether the idle handler is installed to send an notification event
677   TriggerEventInterface*                mNotificationTrigger;         ///< Notification event trigger
678   FeedbackPluginProxy*                  mDaliFeedbackPlugin;          ///< Used to access feedback support
679   FeedbackController*                   mFeedbackController;          ///< Plays feedback effects for Dali-Toolkit UI Controls.
680   Dali::TtsPlayer                       mTtsPlayers[Dali::TtsPlayer::MODE_NUM];                   ///< Provides TTS support
681   ObserverContainer                     mObservers;                   ///< A list of adaptor observer pointers
682   EnvironmentOptions*                   mEnvironmentOptions;          ///< environment options
683   PerformanceInterface*                 mPerformanceInterface;        ///< Performance interface
684   KernelTrace                           mKernelTracer;                ///< Kernel tracer
685   SystemTrace                           mSystemTracer;                ///< System tracer
686   ObjectProfiler*                       mObjectProfiler;              ///< Tracks object lifetime for profiling
687   SocketFactory                         mSocketFactory;               ///< Socket factory
688   const bool                            mEnvironmentOptionsOwned:1;   ///< Whether we own the EnvironmentOptions (and thus, need to delete it)
689   bool                                  mUseRemoteSurface:1;          ///< whether the remoteSurface is used or not
690
691 public:
692   inline static Adaptor& GetImplementation(Dali::Adaptor& adaptor) { return *adaptor.mImpl; }
693 };
694
695 } // namespace Internal
696
697 } // namespace Adaptor
698
699 } // namespace Dali
700
701 #endif // DALI_INTERNAL_ADAPTOR_IMPL_H