[Tizen] Implement partial update
[platform/core/uifw/dali-core.git] / dali / integration-api / core-enumerations.h
1 #ifndef DALI_INTEGRATION_CORE_ENUMERATIONS_H
2 #define DALI_INTEGRATION_CORE_ENUMERATIONS_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 // EXTERNAL INCLUDES
22 #include <dali/public-api/common/dali-common.h>
23 #include <dali/integration-api/context-notifier.h>
24 #include <dali/integration-api/resource-policies.h>
25
26 namespace Dali
27 {
28
29 namespace Integration
30 {
31
32 /**
33  * @brief Enumerations to specify whether we should render to the frame-buffer.
34  */
35 enum class RenderToFrameBuffer
36 {
37   FALSE = 0,
38   TRUE
39 };
40
41 /**
42  * @brief Enumerations to specify whether the depth buffer is available.
43  */
44 enum class DepthBufferAvailable
45 {
46   FALSE = 0,
47   TRUE
48 };
49
50 /**
51  * @brief Enumerations to specify whether the stencil buffer is available.
52  */
53 enum class StencilBufferAvailable
54 {
55   FALSE = 0,
56   TRUE
57 };
58
59 /**
60  * @brief Enumerations to specify whether the partial update is available.
61  */
62 enum class PartialUpdateAvailable
63 {
64   FALSE = 0,
65   TRUE
66 };
67
68 } // namespace Integration
69
70 } // namespace Dali
71
72 #endif // DALI_INTEGRATION_CORE_ENUMERATIONS_H