Merge "Change a service name of the indicator and remove a unused indicator style...
[platform/core/uifw/dali-adaptor.git] / adaptors / wayland / ecore-wl-render-surface.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include "ecore-wl-render-surface.h"
20
21 // EXTERNAL INCLUDES
22 #include <dali/integration-api/gl-abstraction.h>
23 #include <dali/integration-api/debug.h>
24
25 // INTERNAL INCLUDES
26 #include <ecore-wl-types.h>
27 #include <trigger-event.h>
28 #include <gl/egl-implementation.h>
29
30 namespace Dali
31 {
32
33 #if defined(DEBUG_ENABLED)
34 Debug::Filter* gRenderSurfaceLogFilter = Debug::Filter::New(Debug::Verbose, false, "LOG_ECORE_X_RENDER_SURFACE");
35 #endif
36
37 namespace ECore
38 {
39
40 EcoreWlRenderSurface::EcoreWlRenderSurface(Dali::PositionSize positionSize,
41                                            Any surface,
42                                            const std::string& name,
43                                            bool isTransparent)
44 : mPosition(positionSize),
45   mTitle(name),
46   mRenderNotification(NULL),
47   mColorDepth(isTransparent ? COLOR_DEPTH_32 : COLOR_DEPTH_24),
48   mOwnSurface(false)
49 {
50 }
51
52 void EcoreWlRenderSurface::Init( Any surface )
53 {
54   // see if there is a surface in Any surface
55   unsigned int surfaceId  = GetSurfaceId( surface );
56
57   // if the surface is empty, create a new one.
58   if ( surfaceId == 0 )
59   {
60     // we own the surface about to created
61     mOwnSurface = true;
62     CreateWlRenderable();
63   }
64   else
65   {
66     // XLib should already be initialized so no point in calling XInitThreads
67     UseExistingRenderable( surfaceId );
68   }
69
70 #ifdef DEBUG_ENABLED
71   // prints out 'INFO: DALI: new EcoreWlRenderSurface, created display xx, used existing surface xx
72   // we can not use LOG_INFO because the surface can be created before Dali Core is created.
73   printf( "INFO: DALI: new EcoreWlRenderSurface, %s %s surface %X \n",
74           mOwnSurface?"created":"used existing",
75           Dali::RenderSurface::PIXMAP==mType?" pixmap" :"window",
76           GetDrawable() );
77 #endif
78 }
79
80 EcoreWlRenderSurface::~EcoreWlRenderSurface()
81 {
82 }
83
84 void EcoreWlRenderSurface::SetRenderNotification(TriggerEventInterface* renderNotification)
85 {
86   mRenderNotification = renderNotification;
87 }
88
89 Ecore_Wl_Window* EcoreWlRenderSurface::GetWlWindow()
90 {
91   return 0;
92 }
93
94 Ecore_Wl_Window* EcoreWlRenderSurface::GetDrawable()
95 {
96   return 0;
97 }
98
99 PositionSize EcoreWlRenderSurface::GetPositionSize() const
100 {
101   return mPosition;
102 }
103
104 void EcoreWlRenderSurface::MoveResize( Dali::PositionSize positionSize )
105 {
106   // nothing to do in base class
107 }
108
109 void EcoreWlRenderSurface::SetViewMode( ViewMode viewMode )
110 {
111 }
112
113 unsigned int EcoreWlRenderSurface::GetSurfaceId( Any surface ) const
114 {
115   unsigned int surfaceId = 0;
116
117   if ( surface.Empty() == false )
118   {
119     // check we have a valid type
120     DALI_ASSERT_ALWAYS( ( (surface.GetType() == typeid (Ecore_Wl_Window *) ) )
121                         && "Surface type is invalid" );
122
123     surfaceId = AnyCast<unsigned int>( surface );
124   }
125   return surfaceId;
126 }
127
128 } // namespace ECore
129
130 } // namespace Dali