From: Eunki, Hong Date: Thu, 10 Oct 2024 08:05:57 +0000 (+0900) Subject: [Tizen] Fix compile error for tbm_surface_queue_h X-Git-Tag: accepted/tizen/unified/20241015.153137~6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F74%2F318874%2F1;p=platform%2Fcore%2Fuifw%2Fdali-csharp-binder.git [Tizen] Fix compile error for tbm_surface_queue_h Change-Id: I29112f459a94abd16ec60a39b56f2942b592c178 Signed-off-by: Eunki, Hong --- diff --git a/dali-csharp-binder/common/tizen-dependency-wrap.cpp b/dali-csharp-binder/common/tizen-dependency-wrap.cpp index 750dd627..8d57b6cc 100644 --- a/dali-csharp-binder/common/tizen-dependency-wrap.cpp +++ b/dali-csharp-binder/common/tizen-dependency-wrap.cpp @@ -63,7 +63,7 @@ SWIGEXPORT void* SWIGSTDCALL CSharp_Dali_NativeImageSource_New_Handle_With_TbmSu Dali::Any tbmSurface = (Dali::Any)csTbmSurface; { try { - handle->Ptr = NativeImageSource::New(tbmSurface); + handle->Ptr = Dali::NativeImageSource::New(tbmSurface); } CALL_CATCH_EXCEPTION_WITH_FUNCTION(0, [](NativeImageSourcePtrHandle* ptr){delete ptr;}, handle); } jresult = (void *)handle; @@ -85,7 +85,7 @@ struct NativeImageSourceQueuePtrHandle Dali::NativeImageSourceQueuePtr Ptr; }; -SWIGEXPORT void* SWIGSTDCALL CSharp_Dali_NativeImageQueuePtr_New_Handle_With_TbmQueue(tbm_queue_h csTbmQueue) +SWIGEXPORT void* SWIGSTDCALL CSharp_Dali_NativeImageQueuePtr_New_Handle_With_TbmQueue(tbm_surface_queue_h csTbmQueue) { void* jresult; NativeImageSourceQueuePtrHandle* queue = new NativeImageSourceQueuePtrHandle();