X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ffilters%2Fblur-two-pass-filter.h;h=3e73a27ce86acd95f8a5e5ebcc18c25339c43b5d;hb=9d8c0bfbf6a4dfa8aa4a94f8884bc8b5989cbdbc;hp=1e723b942d52e4f1472bdfedd8cefd7bf205c68c;hpb=6d762b4acd946b3d02e76c1805e7af9a1a5b1809;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/filters/blur-two-pass-filter.h b/dali-toolkit/internal/filters/blur-two-pass-filter.h index 1e723b9..3e73a27 100644 --- a/dali-toolkit/internal/filters/blur-two-pass-filter.h +++ b/dali-toolkit/internal/filters/blur-two-pass-filter.h @@ -19,10 +19,8 @@ */ // EXTERNAL INCLUDES -#include -#include #include -#include +#include // INTERNAL INCLUDES #include "image-filter.h" @@ -79,10 +77,6 @@ public: // From ImageFilter Handle GetHandleForAnimateBlurStrength(); private: - /** - * Setup position and parameters for camera - */ - void SetupCamera(); /** * Setup render tasks for blur @@ -95,26 +89,21 @@ private: private: // Attributes - CameraActor mCameraForBlur; - // To perform horizontal blur from mInputImage to mImageForHorz - RenderTask mRenderTaskForHorz; - ImageActor mActorForInput; - FrameBufferImage mImageForHorz; - ShaderEffect mShaderForHorz; + RenderTask mRenderTaskForHorz; + Toolkit::ImageView mActorForInput; + FrameBufferImage mImageForHorz; // To perform vertical blur from mImageForHorz to mOutputImage - RenderTask mRenderTaskForVert; - ImageActor mActorForHorz; - ShaderEffect mShaderForVert; - FrameBufferImage mBlurredImage; + RenderTask mRenderTaskForVert; + Toolkit::ImageView mActorForHorz; + FrameBufferImage mBlurredImage; // To blend the blurred image and input image according to the blur strength - RenderTask mRenderTaskForBlending; - ImageActor mActorForBlending; - Actor mRootActorForBlending; - ShaderEffect mShaderForBlending; - Property::Index mBlurStrengthPropertyIndex; + RenderTask mRenderTaskForBlending; + Toolkit::ImageView mActorForBlending; + Actor mRootActorForBlending; + Property::Index mBlurStrengthPropertyIndex; }; // class BlurTwoPassFilter