X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ffilters%2Fblur-two-pass-filter.h;h=9dd33afaa297f38c85067232993280e591c1c145;hb=954a8e25f7e32579a4a9276db09f43d45a19d2a0;hp=e130897bbf2a32fd45b4a8480d7b1f4fcba803a0;hpb=b154e74ada0754b5b47adcdffcf4a70df43ebbec;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 e130897..9dd33af 100644 --- a/dali-toolkit/internal/filters/blur-two-pass-filter.h +++ b/dali-toolkit/internal/filters/blur-two-pass-filter.h @@ -1,8 +1,8 @@ -#ifndef __DALI_TOOLKIT_INTERNAL_BLUR_TWO_PASS_FILTER_H__ -#define __DALI_TOOLKIT_INTERNAL_BLUR_TWO_PASS_FILTER_H__ +#ifndef DALI_TOOLKIT_INTERNAL_BLUR_TWO_PASS_FILTER_H +#define DALI_TOOLKIT_INTERNAL_BLUR_TWO_PASS_FILTER_H /* - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2019 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -20,8 +20,6 @@ // EXTERNAL INCLUDES #include -#include -#include // INTERNAL INCLUDES #include "image-filter.h" @@ -90,19 +88,19 @@ private: private: // Attributes - // To perform horizontal blur from mInputImage to mImageForHorz + // To perform horizontal blur from mInputTexture to mFrameBufferForHorz RenderTask mRenderTaskForHorz; - Toolkit::ImageView mActorForInput; - FrameBufferImage mImageForHorz; + Actor mActorForInput; + FrameBuffer mFrameBufferForHorz; - // To perform vertical blur from mImageForHorz to mOutputImage + // To perform vertical blur from mFrameBufferForHorz to mOutputFrameBuffer RenderTask mRenderTaskForVert; - Toolkit::ImageView mActorForHorz; - FrameBufferImage mBlurredImage; + Actor mActorForHorz; + FrameBuffer mBlurredFrameBuffer; // To blend the blurred image and input image according to the blur strength RenderTask mRenderTaskForBlending; - Toolkit::ImageView mActorForBlending; + Actor mActorForBlending; Actor mRootActorForBlending; Property::Index mBlurStrengthPropertyIndex; @@ -114,5 +112,5 @@ private: // Attributes } // namespace Dali -#endif // __DALI_TOOLKIT_INTERNAL_BLUR_TWO_PASS_FILTER_H__ +#endif // DALI_TOOLKIT_INTERNAL_BLUR_TWO_PASS_FILTER_H