MS Windows - Fix compile errors when debug is enabled.
[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 #undef FALSE
27 #undef TRUE
28
29 namespace Dali
30 {
31
32 namespace Integration
33 {
34
35 /**
36  * @brief Enumerations to specify whether we should render to the frame-buffer.
37  */
38 enum class RenderToFrameBuffer
39 {
40   FALSE = 0,
41   TRUE
42 };
43
44 /**
45  * @brief Enumerations to specify whether the depth buffer is available.
46  */
47 enum class DepthBufferAvailable
48 {
49   FALSE = 0,
50   TRUE
51 };
52
53 /**
54  * @brief Enumerations to specify whether the stencil buffer is available.
55  */
56 enum class StencilBufferAvailable
57 {
58   FALSE = 0,
59   TRUE
60 };
61
62 } // namespace Integration
63
64 } // namespace Dali
65
66 #endif // DALI_INTEGRATION_CORE_ENUMERATIONS_H