From 633d14732513e9cda7586f3dc1d4ea063983b894 Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Fri, 14 Mar 2025 09:23:39 +0900 Subject: [PATCH] Bind latest Dali::Renderer enums Change-Id: I293337746a5a0eaf0938c0608ac8cf2666b40607 Signed-off-by: Eunki, Hong --- dali-csharp-binder/common/dali-wrap.cpp | 91 +++++++++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/dali-csharp-binder/common/dali-wrap.cpp b/dali-csharp-binder/common/dali-wrap.cpp index 644d7301..a56a3d08 100644 --- a/dali-csharp-binder/common/dali-wrap.cpp +++ b/dali-csharp-binder/common/dali-wrap.cpp @@ -181,6 +181,7 @@ #include #include #include +#include #include #include @@ -10978,6 +10979,96 @@ SWIGEXPORT int SWIGSTDCALL CSharp_Dali_Renderer_Property_STENCIL_OPERATION_ON_Z_ } +SWIGEXPORT int SWIGSTDCALL CSharp_Dali_Renderer_Property_MIX_COLOR_get() { + int jresult ; + int result; + + result = (int)Dali::Renderer::Property::MIX_COLOR; + jresult = (int)result; + return jresult; +} + + +SWIGEXPORT int SWIGSTDCALL CSharp_Dali_Renderer_Property_MIX_COLOR_RED_get() { + int jresult ; + int result; + + result = (int)Dali::Renderer::Property::MIX_COLOR_RED; + jresult = (int)result; + return jresult; +} + + +SWIGEXPORT int SWIGSTDCALL CSharp_Dali_Renderer_Property_MIX_COLOR_GREEN_get() { + int jresult ; + int result; + + result = (int)Dali::Renderer::Property::MIX_COLOR_GREEN; + jresult = (int)result; + return jresult; +} + + +SWIGEXPORT int SWIGSTDCALL CSharp_Dali_Renderer_Property_MIX_COLOR_BLUE_get() { + int jresult ; + int result; + + result = (int)Dali::Renderer::Property::MIX_COLOR_BLUE; + jresult = (int)result; + return jresult; +} + + +SWIGEXPORT int SWIGSTDCALL CSharp_Dali_Renderer_Property_OPACITY_get() { + int jresult ; + int result; + + result = (int)Dali::Renderer::Property::OPACITY; + jresult = (int)result; + return jresult; +} + + +SWIGEXPORT int SWIGSTDCALL CSharp_Dali_Renderer_Property_RENDERING_BEHAVIOR_get() { + int jresult ; + int result; + + result = (int)Dali::DevelRenderer::Property::RENDERING_BEHAVIOR; + jresult = (int)result; + return jresult; +} + + +SWIGEXPORT int SWIGSTDCALL CSharp_Dali_Renderer_Property_BLEND_EQUATION_get() { + int jresult ; + int result; + + result = (int)Dali::DevelRenderer::Property::BLEND_EQUATION; + jresult = (int)result; + return jresult; +} + + +SWIGEXPORT int SWIGSTDCALL CSharp_Dali_Renderer_Property_INSTANCE_COUNT_get() { + int jresult ; + int result; + + result = (int)Dali::DevelRenderer::Property::INSTANCE_COUNT; + jresult = (int)result; + return jresult; +} + + +SWIGEXPORT int SWIGSTDCALL CSharp_Dali_Renderer_Property_UPDATE_AREA_EXTENTS_get() { + int jresult ; + int result; + + result = (int)Dali::DevelRenderer::Property::UPDATE_AREA_EXTENTS; + jresult = (int)result; + return jresult; +} + + SWIGEXPORT void * SWIGSTDCALL CSharp_Dali_Renderer_New(void * jarg1, void * jarg2) { void * jresult ; Dali::Geometry *arg1 = 0 ; -- 2.34.1