From 7ba895ab4a831a88538e451ca746cb320ee94af6 Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Thu, 10 Oct 2024 17:06:39 +0900 Subject: [PATCH] Fix compile error for tbm_surface_queue_h Change-Id: I9cfb6d92ae639d230a39faeece7ceb4fd5fd1908 Signed-off-by: Eunki, Hong --- dali-csharp-binder/common/tizen-dependency-wrap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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(); -- 2.34.1