[3.0] Fix build error when using --enable-debug option
[platform/core/uifw/dali-adaptor.git] / adaptors / ecore / wayland / render-surface-ecore-wl.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 <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     ecore_wl_init(NULL);
62     mOwnSurface = true;
63     CreateWlRenderable();
64   }
65   else
66   {
67     // XLib should already be initialized so no point in calling XInitThreads
68     UseExistingRenderable( surfaceId );
69   }
70
71 #ifdef DEBUG_ENABLED
72   // prints out 'INFO: DALI: new EcoreWlRenderSurface, created display xx, used existing surface xx
73   // we can not use LOG_INFO because the surface can be created before Dali Core is created.
74   // TODO: Overy tizen 3.0, we don't use X anymore. Change this for Tizen 3.0
75   /*
76   printf( "INFO: DALI: new EcoreWlRenderSurface, %s %s surface %X \n",
77           mOwnSurface?"created":"used existing",
78           Dali::RenderSurface::PIXMAP==mType?" pixmap" :"window",
79           AnyCast<Ecore_X_Drawable>( GetSurface() ) );
80   */
81 #endif
82 }
83
84 EcoreWlRenderSurface::~EcoreWlRenderSurface()
85 {
86 }
87
88 void EcoreWlRenderSurface::SetRenderNotification(TriggerEventInterface* renderNotification)
89 {
90   mRenderNotification = renderNotification;
91 }
92
93 Ecore_Wl_Window* EcoreWlRenderSurface::GetWlWindow()
94 {
95   return 0;
96 }
97
98 Ecore_Wl_Window* EcoreWlRenderSurface::GetDrawable()
99 {
100   return 0;
101 }
102
103 PositionSize EcoreWlRenderSurface::GetPositionSize() const
104 {
105   return mPosition;
106 }
107
108 void EcoreWlRenderSurface::MoveResize( Dali::PositionSize positionSize )
109 {
110   // nothing to do in base class
111 }
112
113 void EcoreWlRenderSurface::SetViewMode( ViewMode viewMode )
114 {
115 }
116
117 unsigned int EcoreWlRenderSurface::GetSurfaceId( Any surface ) const
118 {
119   unsigned int surfaceId = 0;
120
121   if ( surface.Empty() == false )
122   {
123     // check we have a valid type
124     DALI_ASSERT_ALWAYS( ( (surface.GetType() == typeid (Ecore_Wl_Window *) ) )
125                         && "Surface type is invalid" );
126
127     surfaceId = AnyCast<unsigned int>( surface );
128   }
129   return surfaceId;
130 }
131
132 RenderSurface::Type EcoreWlRenderSurface::GetSurfaceType()
133 {
134   return RenderSurface::ECORE_RENDER_SURFACE;
135 }
136
137 } // namespace ECore
138
139 } // namespace Dali