Merge "PixmapSurface changes to double buffered pixmap." into devel/master
[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     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   printf( "INFO: DALI: new EcoreWlRenderSurface, %s %s surface %X \n",
75           mOwnSurface?"created":"used existing",
76           Dali::RenderSurface::PIXMAP==mType?" pixmap" :"window",
77           AnyCast<Ecore_X_Drawable>( GetSurface() ) );
78 #endif
79 }
80
81 EcoreWlRenderSurface::~EcoreWlRenderSurface()
82 {
83 }
84
85 void EcoreWlRenderSurface::SetRenderNotification(TriggerEventInterface* renderNotification)
86 {
87   mRenderNotification = renderNotification;
88 }
89
90 Ecore_Wl_Window* EcoreWlRenderSurface::GetWlWindow()
91 {
92   return 0;
93 }
94
95 Ecore_Wl_Window* EcoreWlRenderSurface::GetDrawable()
96 {
97   return 0;
98 }
99
100 PositionSize EcoreWlRenderSurface::GetPositionSize() const
101 {
102   return mPosition;
103 }
104
105 void EcoreWlRenderSurface::MoveResize( Dali::PositionSize positionSize )
106 {
107   // nothing to do in base class
108 }
109
110 void EcoreWlRenderSurface::SetViewMode( ViewMode viewMode )
111 {
112 }
113
114 unsigned int EcoreWlRenderSurface::GetSurfaceId( Any surface ) const
115 {
116   unsigned int surfaceId = 0;
117
118   if ( surface.Empty() == false )
119   {
120     // check we have a valid type
121     DALI_ASSERT_ALWAYS( ( (surface.GetType() == typeid (Ecore_Wl_Window *) ) )
122                         && "Surface type is invalid" );
123
124     surfaceId = AnyCast<unsigned int>( surface );
125   }
126   return surfaceId;
127 }
128
129 } // namespace ECore
130
131 } // namespace Dali