[Tizen] Change tbm_bufmgr to tbm_dummy_display.
[platform/core/uifw/dali-adaptor.git] / adaptors / tizen / display-connection-impl-tizen.cpp
1 /*
2  * Copyright (c) 2017 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 <tbm_bufmgr.h>
23 #include <tbm_dummy_display.h>
24 #include <dali/integration-api/debug.h>
25
26 // INTERNAL HEADERS
27 #include <native-render-surface.h>
28 #include <gl/egl-implementation.h>
29
30 namespace Dali
31 {
32
33 namespace Internal
34 {
35
36 namespace Adaptor
37 {
38
39 EGLNativeDisplayType DisplayConnection::GetNativeDisplay()
40 {
41   return reinterpret_cast< EGLNativeDisplayType >( tbm_dummy_display_create() );
42 }
43
44 void DisplayConnection::ReleaseNativeDisplay()
45 {
46   if( mDisplay )
47   {
48      tbm_dummy_display_destroy( reinterpret_cast< tbm_dummy_display* >( mDisplay ) );
49   }
50 }
51
52 } // namespace Adaptor
53
54 } // namespace Internal
55
56 } // namespace Dali