[Tizen] Binder for Blend Equation 10/247610/2
authorseungho <sbsh.baek@samsung.com>
Tue, 10 Nov 2020 04:13:22 +0000 (13:13 +0900)
committerseungho <sbsh.baek@samsung.com>
Thu, 19 Nov 2020 04:54:31 +0000 (13:54 +0900)
Change-Id: I584ac59f53f6c989df84c33fc50a036364a3124c
Signed-off-by: seungho <sbsh.baek@samsung.com>
dali-csharp-binder/file.list
dali-csharp-binder/src/capabilities.cpp [new file with mode: 0644]
dali-csharp-binder/src/devel-property-wrap.cpp

index 1474585..5430d9f 100755 (executable)
@@ -28,6 +28,7 @@ dali_csharp_binder_common_src_files = \
   ${dali_csharp_binder_dir}/src/extents.cpp \
   ${dali_csharp_binder_dir}/src/text-label.cpp \
   ${dali_csharp_binder_dir}/src/text-utils.cpp \
+  ${dali_csharp_binder_dir}/src/capabilities.cpp \
   ${dali_csharp_binder_dir}/src/capture.cpp \
   ${dali_csharp_binder_dir}/src/gl-window.cpp \
   ${dali_csharp_binder_dir}/src/autofill-container-wrap.cpp
diff --git a/dali-csharp-binder/src/capabilities.cpp b/dali-csharp-binder/src/capabilities.cpp
new file mode 100644 (file)
index 0000000..3bffd79
--- /dev/null
@@ -0,0 +1,63 @@
+#ifndef CSHARP_CAPABILITIES
+#define CSHARP_CAPABILITIES
+
+/*
+ * Copyright (c) 2020 Samsung Electronics Co., Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
+#include "common.h"
+#include <dali/devel-api/common/capabilities.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_IsBlendEquationSupported( int blendEquation ) {
+  bool jresult;
+
+  {
+    try {
+      jresult = Dali::Capabilities::IsBlendEquationSupported( static_cast<Dali::DevelBlendEquation::Type>(blendEquation) );
+    }
+    catch (std::out_of_range & e) {
+      {
+        SWIG_CSharpException(SWIG_IndexError, const_cast<char*>(e.what())); return 0;
+      };
+    }
+    catch (std::exception & e) {
+      {
+        SWIG_CSharpException(SWIG_RuntimeError, const_cast<char*>(e.what())); return 0;
+      };
+    }
+    catch (Dali::DaliException e) {
+      {
+        SWIG_CSharpException(SWIG_UnknownError, e.condition); return 0;
+      };
+    }
+    catch (...) {
+      {
+        SWIG_CSharpException(SWIG_UnknownError, "unknown error"); return 0;
+      };
+    }
+  }
+  return jresult;
+}
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
\ No newline at end of file
index 7e43dba..98ddaf9 100755 (executable)
@@ -74,6 +74,11 @@ SWIGEXPORT int SWIGSTDCALL CSharp_Actor_Property_TOUCH_AREA_get() {
   return Dali::DevelActor::Property::TOUCH_AREA;
 }
 
+SWIGEXPORT int SWIGSTDCALL CSharp_Actor_Property_BLEND_EQUATION_get() {
+
+  return Dali::DevelActor::Property::BLEND_EQUATION;
+}
+
 SWIGEXPORT int SWIGSTDCALL CSharp_View_Property_TOOLTIP_get() {
   int jresult ;
   int result;