656bd776917e7b2cc7a002484ac12d4e9a4cdbda
[platform/core/uifw/dali-adaptor.git] / dali / internal / offscreen / ubuntu-x11 / offscreen-window-impl-x.cpp
1 /*
2  * Copyright (c) 2020 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 // EXTERNAL INCLUDES
19 #include <dali/public-api/actors/layer.h>
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/offscreen/common/offscreen-application-impl.h>
23
24 // CLASS HEADER
25 #include <dali/internal/offscreen/ubuntu-x11/offscreen-window-impl-x.h>
26
27 namespace Dali
28 {
29
30 namespace Internal
31 {
32
33 OffscreenWindowX* OffscreenWindowX::New( uint16_t width, uint16_t height, Dali::Any surface, bool isTranslucent )
34 {
35   OffscreenWindowX* window = new OffscreenWindowX( width, height, surface, isTranslucent );
36   return window;
37 }
38
39 OffscreenWindowX::OffscreenWindowX( uint16_t width, uint16_t height, Dali::Any surface, bool isTranslucent )
40 : mIsTranslucent( isTranslucent )
41 {
42 }
43
44 void OffscreenWindowX::Initialize( bool isDefaultWindow )
45 {
46 }
47
48 void OffscreenWindowX::Initialize()
49 {
50 }
51
52 OffscreenWindowX::~OffscreenWindowX()
53 {
54 }
55
56 uint32_t OffscreenWindowX::GetLayerCount() const
57 {
58   return 0;
59 }
60
61 Dali::Layer OffscreenWindowX::GetLayer( uint32_t depth ) const
62 {
63   return Dali::Layer();
64 }
65
66 OffscreenWindow::WindowSize OffscreenWindowX::GetSize() const
67 {
68   return OffscreenWindow::WindowSize();
69 }
70
71 Dali::Any OffscreenWindowX::GetNativeHandle() const
72 {
73   return Any();
74 }
75
76 NativeRenderSurface* OffscreenWindowX::GetNativeRenderSurface() const
77 {
78   return nullptr;
79 }
80
81 void OffscreenWindowX::OnPostRender()
82 {
83 }
84
85 OffscreenWindow::PostRenderSignalType& OffscreenWindowX::PostRenderSignal()
86 {
87   return mPostRenderSignal;
88 }
89
90 } // namespace Internal
91
92 } // namespace Dali