Revert "[Tizen] Added 'make clean' on each profile build."
[platform/core/uifw/dali-adaptor.git] / adaptors / x11 / display-connection-impl-x.cpp
1 /*
2  * Copyright (c) 2015 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 "display-connection-impl.h"
20
21 // EXTERNAL_HEADERS
22 #include <Ecore_X.h>
23 #include <dali/integration-api/debug.h>
24
25 // INTERNAL HEADERS
26 #include <pixmap-render-surface.h>
27
28 namespace Dali
29 {
30
31 namespace Internal
32 {
33
34 namespace Adaptor
35 {
36
37 DisplayConnection* DisplayConnection::New()
38 {
39   DisplayConnection* pDisplayConnection(new DisplayConnection());
40
41   return pDisplayConnection;
42 }
43
44 DisplayConnection::DisplayConnection()
45 : mDisplay(NULL)
46 {
47 }
48
49 DisplayConnection::~DisplayConnection()
50 {
51   if(mDisplay)
52   {
53     XCloseDisplay(mDisplay);
54   }
55 }
56
57 Any DisplayConnection::GetDisplay()
58 {
59   return Any(mDisplay);
60 }
61
62 void DisplayConnection::ConsumeEvents()
63 {
64   // check events so that we can flush the queue and avoid any potential memory leaks in X
65   // looping if events remain
66   int events(0);
67   do
68   {
69     // Check if there are any events in the queue
70     events = XEventsQueued(mDisplay, QueuedAfterFlush);
71
72     if (events > 0)
73     {
74       // Just flush event to prevent memory leak from event queue as the events get built up in
75       // memory but are only deleted when we retrieve them
76       XEvent ev;
77       XNextEvent(mDisplay, &ev);
78     }
79   }
80   while (events > 0);
81 }
82
83 bool DisplayConnection::InitializeEgl(EglInterface& egl)
84 {
85   EglImplementation& eglImpl = static_cast<EglImplementation&>(egl);
86
87   if (!eglImpl.InitializeGles(reinterpret_cast<EGLNativeDisplayType>(mDisplay)))
88   {
89     DALI_LOG_ERROR("Failed to initialize GLES.\n");
90     return false;
91   }
92
93   return true;
94 }
95
96 void DisplayConnection::SetSurfaceType( RenderSurface::Type type )
97 {
98   if( type == RenderSurface::ECORE_RENDER_SURFACE )
99   {
100     // Because of DDK issue, we need to use separated x display instead of ecore default display
101     mDisplay = XOpenDisplay(0);
102   }
103 }
104
105 void DisplayConnection::GetDpi(unsigned int& dpiHorizontal, unsigned int& dpiVertical)
106 {
107   // calculate DPI
108   float xres, yres;
109
110   // 1 inch = 25.4 millimeters
111   xres = ecore_x_dpi_get();
112   yres = ecore_x_dpi_get();
113
114   dpiHorizontal = int(xres + 0.5f);  // rounding
115   dpiVertical   = int(yres + 0.5f);
116 }
117
118 } // namespace Adaptor
119
120 } // namespace Internal
121
122 } // namespace Dali