Binding the update area for frame update 82/306182/1
authorWonsik Jung <sidein@samsung.com>
Fri, 16 Feb 2024 12:04:35 +0000 (21:04 +0900)
committerWonsik Jung <sidein@samsung.com>
Fri, 16 Feb 2024 12:04:35 +0000 (21:04 +0900)
Change-Id: I022b2969afa98bcc318cca55a41e3aa5292b2741

dali-csharp-binder/dali-toolkit/dali-toolkit-wrap.cpp

index 3bc43b2..7e7ba54 100644 (file)
@@ -15523,6 +15523,18 @@ SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_FrameCallbackInterface_BakeColor(void *
   return proxy->BakeColor(id, *vector4);
 }
 
+SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_FrameCallbackInterface_SetUpdateArea(void * updateProxy, unsigned int id, void* updateArea) {
+  Dali::UpdateProxy *proxy = (Dali::UpdateProxy*)updateProxy;
+  Dali::Vector4* vector4 = (Dali::Vector4 *)updateArea;
+  return proxy->SetUpdateArea(id, *vector4);
+}
+
+SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_FrameCallbackInterface_GetUpdateArea(void * updateProxy, unsigned int id, void* updateArea) {
+  Dali::UpdateProxy *proxy = (Dali::UpdateProxy*)updateProxy;
+  Dali::Vector4* vector4 = (Dali::Vector4 *)updateArea;
+  return proxy->GetUpdateArea(id, *vector4);
+}
+
 SWIGEXPORT void SWIGSTDCALL CSharp_Dali_SetCustomAlgorithm(void * jarg1, void * jarg2) {
   KeyboardFocusManager arg1 ;
   Dali::Toolkit::DevelKeyboardFocusManager::CustomAlgorithmInterface *arg2 = 0 ;