Bind FrameUpdateCallback Orientation change 98/316498/2
authorEunki, Hong <eunkiki.hong@samsung.com>
Thu, 22 Aug 2024 08:08:47 +0000 (17:08 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Mon, 26 Aug 2024 01:18:45 +0000 (10:18 +0900)
Change-Id: I501691cafd4165c2eb0fcdc6992c894aa4b11c2c
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali-csharp-binder/dali-toolkit/dali-toolkit-wrap.cpp

index 482668ab0897c111d59ac29cbea2f7ba8036a0e7..f07a6f06a1b7e1c2726cfb54883bcc87114b23fa 100644 (file)
@@ -12609,6 +12609,24 @@ SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_FrameCallbackInterface_BakePosition(void
   return proxy->BakePosition(id, *vector3);
 }
 
+SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_FrameCallbackInterface_GetOrientation(void * updateProxy, unsigned int id,  void* orientation) {
+  Dali::UpdateProxy *proxy = (Dali::UpdateProxy*)updateProxy;
+  Dali::Quaternion* quaternion = (Dali::Quaternion *)orientation;
+  return proxy->GetOrientation(id, *quaternion);
+}
+
+SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_FrameCallbackInterface_SetOrientation(void * updateProxy, unsigned int id, void* orientation) {
+  Dali::UpdateProxy *proxy = (Dali::UpdateProxy*)updateProxy;
+  Dali::Quaternion* quaternion = (Dali::Quaternion *)orientation;
+  return proxy->SetOrientation(id, *quaternion);
+}
+
+SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_FrameCallbackInterface_BakeOrientation(void * updateProxy, unsigned int id, void* orientation) {
+  Dali::UpdateProxy *proxy = (Dali::UpdateProxy*)updateProxy;
+  Dali::Quaternion* quaternion = (Dali::Quaternion *)orientation;
+  return proxy->BakeOrientation(id, *quaternion);
+}
+
 SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_FrameCallbackInterface_GetSize(void * updateProxy, unsigned int id, void* size) {
   Dali::UpdateProxy *proxy = (Dali::UpdateProxy*)updateProxy;
   Dali::Vector3* vector3 = (Dali::Vector3 *)size;
@@ -12620,6 +12638,7 @@ SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_FrameCallbackInterface_SetSize(void * up
   Dali::Vector3* vector3 = (Dali::Vector3 *)size;
   return proxy->SetSize(id, *vector3);
 }
+
 SWIGEXPORT bool SWIGSTDCALL CSharp_Dali_FrameCallbackInterface_BakeSize(void * updateProxy, unsigned int id, void* size) {
   Dali::UpdateProxy *proxy = (Dali::UpdateProxy*)updateProxy;
   Dali::Vector3* vector3 = (Dali::Vector3 *)size;