Revert "[Tizen] Implement partial update"
[platform/core/uifw/dali-adaptor.git] / dali / internal / graphics / common / graphics-interface.h
1 #ifndef DALI_INTERNAL_BASE_GRAPHICS_INTERFACE_H
2 #define DALI_INTERNAL_BASE_GRAPHICS_INTERFACE_H
3
4 /*
5  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/internal/system/common/environment-options.h>
23 #include <dali/integration-api/core-enumerations.h>
24
25 namespace Dali
26 {
27
28 namespace Internal
29 {
30
31 namespace Adaptor
32 {
33
34 /**
35  * Factory interface for creating Graphics Factory implementation
36  */
37 class GraphicsInterface
38 {
39 public:
40
41   /**
42    * Constructor
43    */
44   GraphicsInterface()
45 : mDepthBufferRequired( Integration::DepthBufferAvailable::FALSE ),
46   mStencilBufferRequired( Integration::StencilBufferAvailable::FALSE )
47   {
48   };
49
50   /**
51    * Initialize the graphics interface
52    * @param[in]  environmentOptions  The environment options.
53    */
54   virtual void Initialize( EnvironmentOptions* environmentOptions ) = 0;
55
56   /**
57    * Destroy the Graphics Factory implementation
58    */
59   virtual void Destroy() = 0;
60
61   /**
62    * Get whether the depth buffer is required
63    * @return TRUE if the depth buffer is required
64    */
65   Integration::DepthBufferAvailable& GetDepthBufferRequired()
66   {
67     return mDepthBufferRequired;
68   };
69
70   /**
71    * Get whether the stencil buffer is required
72    * @return TRUE if the stencil buffer is required
73    */
74   Integration::StencilBufferAvailable GetStencilBufferRequired()
75   {
76     return mStencilBufferRequired;
77   };
78
79 protected:
80   /**
81    * Virtual protected destructor - no deletion through this interface
82    */
83   virtual ~GraphicsInterface() {};
84
85
86 protected:
87
88   Integration::DepthBufferAvailable mDepthBufferRequired;       ///< Whether the depth buffer is required
89   Integration::StencilBufferAvailable mStencilBufferRequired;   ///< Whether the stencil buffer is required
90 };
91
92 } // Adaptor
93
94 } // Internal
95
96 } // Dali
97
98 #endif // DALI_INTERNAL_BASE_GRAPHICS_INTERFACE_H