[Tizen] Revert "Remove StereoMode"
[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) 2017 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/public-api/common/view-mode.h>
24 #include <dali/integration-api/context-notifier.h>
25 #include <dali/integration-api/resource-policies.h>
26
27 namespace Dali
28 {
29
30 namespace Integration
31 {
32
33 /**
34  * @brief Enumerations to specify whether we should render to the frame-buffer.
35  */
36 enum class RenderToFrameBuffer
37 {
38   FALSE = 0,
39   TRUE
40 };
41
42 /**
43  * @brief Enumerations to specify whether the depth buffer is available.
44  */
45 enum class DepthBufferAvailable
46 {
47   FALSE = 0,
48   TRUE
49 };
50
51 /**
52  * @brief Enumerations to specify whether the stencil buffer is available.
53  */
54 enum class StencilBufferAvailable
55 {
56   FALSE = 0,
57   TRUE
58 };
59
60 } // namespace Integration
61
62 } // namespace Dali
63
64 #endif // DALI_INTEGRATION_CORE_ENUMERATIONS_H