Merge "[Tizen] Binder for Blend Equation" into tizen
[platform/core/uifw/dali-csharp-binder.git] / dali-csharp-binder / src / capabilities.cpp
1 #ifndef CSHARP_CAPABILITIES
2 #define CSHARP_CAPABILITIES
3
4 /*
5  * Copyright (c) 2020 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 #include "common.h"
22 #include <dali/devel-api/common/capabilities.h>
23
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27
28 SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_IsBlendEquationSupported( int blendEquation ) {
29   bool jresult;
30
31   {
32     try {
33       jresult = Dali::Capabilities::IsBlendEquationSupported( static_cast<Dali::DevelBlendEquation::Type>(blendEquation) );
34     }
35     catch (std::out_of_range & e) {
36       {
37         SWIG_CSharpException(SWIG_IndexError, const_cast<char*>(e.what())); return 0;
38       };
39     }
40     catch (std::exception & e) {
41       {
42         SWIG_CSharpException(SWIG_RuntimeError, const_cast<char*>(e.what())); return 0;
43       };
44     }
45     catch (Dali::DaliException e) {
46       {
47         SWIG_CSharpException(SWIG_UnknownError, e.condition); return 0;
48       };
49     }
50     catch (...) {
51       {
52         SWIG_CSharpException(SWIG_UnknownError, "unknown error"); return 0;
53       };
54     }
55   }
56   return jresult;
57 }
58
59 #ifdef __cplusplus
60 }
61 #endif
62
63 #endif