From a8d7c76d01ce7b3ebefc71b3712b0697d85e411e Mon Sep 17 00:00:00 2001 From: jmm Date: Tue, 25 Mar 2025 18:21:51 +0900 Subject: [PATCH] Add background blur effect option: blur once Change-Id: I53c8c9f6a400c67ad992dd9055a99b1bf3114f80 --- dali-csharp-binder/dali-toolkit/render-effects-wrap.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dali-csharp-binder/dali-toolkit/render-effects-wrap.cpp b/dali-csharp-binder/dali-toolkit/render-effects-wrap.cpp index 39160f49..5902b839 100644 --- a/dali-csharp-binder/dali-toolkit/render-effects-wrap.cpp +++ b/dali-csharp-binder/dali-toolkit/render-effects-wrap.cpp @@ -25,13 +25,13 @@ extern "C" { #endif -SWIGEXPORT void * SWIGSTDCALL CSharp_Dali_BackgroundBlurEffect_New__SWIG_1(unsigned int pixelRadius) { +SWIGEXPORT void * SWIGSTDCALL CSharp_Dali_BackgroundBlurEffect_New__SWIG_1(unsigned int pixelRadius, bool blurOnce) { Dali::Toolkit::RenderEffect blurEffect; { try { - blurEffect = Dali::Toolkit::RenderEffect::CreateBackgroundBlurEffect(0.25f, pixelRadius); + blurEffect = Dali::Toolkit::RenderEffect::CreateBackgroundBlurEffect(0.25f, pixelRadius, blurOnce); } CALL_CATCH_EXCEPTION(0); } -- 2.34.1