Remove ImageActor from comments and variable names
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / gaussian-blur-view / gaussian-blur-view-impl.cpp
1 /*
2  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include "gaussian-blur-view-impl.h"
20
21 // EXTERNAL INCLUDES
22 #include <sstream>
23 #include <iomanip>
24 #include <dali/public-api/animation/constraint.h>
25 #include <dali/public-api/animation/constraints.h>
26 #include <dali/public-api/common/stage.h>
27 #include <dali/public-api/object/property-map.h>
28 #include <dali/public-api/object/type-registry.h>
29 #include <dali/public-api/object/type-registry-helper.h>
30 #include <dali/public-api/render-tasks/render-task-list.h>
31 #include <dali/integration-api/debug.h>
32
33 // INTERNAL INCLUDES
34 #include <dali-toolkit/public-api/controls/gaussian-blur-view/gaussian-blur-view.h>
35
36 // TODO:
37 // pixel format / size - set from JSON
38 // aspect ratio property needs to be able to be constrained also for cameras, not possible currently. Therefore changing aspect ratio of GaussianBlurView won't currently work
39 // default near clip value
40 // Manager object - re-use render targets if there are multiple GaussianBlurViews created
41
42
43 /////////////////////////////////////////////////////////
44 // IMPLEMENTATION NOTES
45
46 // As the GaussianBlurView actor changes size, the amount of pixels we need to blur changes. Therefore we need some way of doing this. However:-
47 // OnSetSize() does not get called when GaussianBlurView object size is modified using a Constraint.
48 // OnSizeAnimation() only gets called once per AnimateTo/By() and if an Animation has N such calls then only the final one will end up being used. Therefore we can't use
49 // OnSizeAnimation() to alter render target sizes.
50 // To get around the above problems, we use fixed sized render targets, from the last SetSize() call (which calls OnSetSize()), then we adjust the internal cameras / actors
51 // to take account of the changed GaussianBlurView object size, projecting to the unchanged render target sizes. This is done relative to the fixed render target / actor sizes
52 // by using constraints relative to the GaussianBlurView actor size.
53
54
55 // 2 modes:
56 // 1st mode, this control has a tree of actors (use Add() to add children) that are rendered and blurred.
57 // mRenderChildrenTask renders children to FB mRenderTargetForRenderingChildren
58 // mHorizBlurTask renders mImageViewHorizBlur Actor showing FB mRenderTargetForRenderingChildren into FB mRenderTarget2
59 // mVertBlurTask renders mImageViewVertBlur Actor showing FB mRenderTarget2 into FB mRenderTarget1
60 // mCompositeTask renders mImageViewComposite Actor showing FB mRenderTarget1 into FB mRenderTargetForRenderingChildren
61 //
62 // 2nd mode, an image is blurred and rendered to a supplied target framebuffer
63 // mHorizBlurTask renders mImageViewHorizBlur Actor showing mUserInputImage into FB mRenderTarget2
64 // mVertBlurTask renders mImageViewVertBlur Actor showing mRenderTarget2 into FB mUserOutputRenderTarget
65 //
66 // Only this 2nd mode handles ActivateOnce
67
68 namespace Dali
69 {
70
71 namespace Toolkit
72 {
73
74 namespace Internal
75 {
76
77 namespace
78 {
79
80 using namespace Dali;
81
82 BaseHandle Create()
83 {
84   return Toolkit::GaussianBlurView::New();
85 }
86
87 DALI_TYPE_REGISTRATION_BEGIN( Toolkit::GaussianBlurView, Toolkit::Control, Create )
88 DALI_TYPE_REGISTRATION_END()
89
90 const unsigned int GAUSSIAN_BLUR_VIEW_DEFAULT_NUM_SAMPLES = 5;
91 const float GAUSSIAN_BLUR_VIEW_DEFAULT_BLUR_BELL_CURVE_WIDTH = 1.5f;
92 const Pixel::Format GAUSSIAN_BLUR_VIEW_DEFAULT_RENDER_TARGET_PIXEL_FORMAT = Pixel::RGBA8888;
93 const float GAUSSIAN_BLUR_VIEW_DEFAULT_BLUR_STRENGTH = 1.0f;                                       // default, fully blurred
94 const char* const GAUSSIAN_BLUR_VIEW_STRENGTH_PROPERTY_NAME = "GaussianBlurStrengthPropertyName";
95 const float GAUSSIAN_BLUR_VIEW_DEFAULT_DOWNSAMPLE_WIDTH_SCALE = 0.5f;
96 const float GAUSSIAN_BLUR_VIEW_DEFAULT_DOWNSAMPLE_HEIGHT_SCALE = 0.5f;
97
98 const float ARBITRARY_FIELD_OF_VIEW = Math::PI / 4.0f;
99
100 const char* const GAUSSIAN_BLUR_FRAGMENT_SOURCE =
101     "varying mediump vec2 vTexCoord;\n"
102     "uniform sampler2D sTexture;\n"
103     "uniform lowp vec4 uColor;\n"
104     "uniform mediump vec2 uSampleOffsets[NUM_SAMPLES];\n"
105     "uniform mediump float uSampleWeights[NUM_SAMPLES];\n"
106
107     "void main()\n"
108     "{\n"
109     "   mediump vec4 col = texture2D(sTexture, vTexCoord + uSampleOffsets[0]) * uSampleWeights[0];\n"
110     "   for (int i=1; i<NUM_SAMPLES; ++i)\n"
111     "   {\n"
112     "     col += texture2D(sTexture, vTexCoord + uSampleOffsets[i]) * uSampleWeights[i];\n"
113     "   }\n"
114     "   gl_FragColor = col;\n"
115     "}\n";
116
117 } // namespace
118
119
120 GaussianBlurView::GaussianBlurView()
121   : Control( ControlBehaviour( DISABLE_SIZE_NEGOTIATION ) )
122   , mNumSamples(GAUSSIAN_BLUR_VIEW_DEFAULT_NUM_SAMPLES)
123   , mBlurBellCurveWidth( 0.001f )
124   , mPixelFormat(GAUSSIAN_BLUR_VIEW_DEFAULT_RENDER_TARGET_PIXEL_FORMAT)
125   , mDownsampleWidthScale(GAUSSIAN_BLUR_VIEW_DEFAULT_DOWNSAMPLE_WIDTH_SCALE)
126   , mDownsampleHeightScale(GAUSSIAN_BLUR_VIEW_DEFAULT_DOWNSAMPLE_HEIGHT_SCALE)
127   , mDownsampledWidth( 0.0f )
128   , mDownsampledHeight( 0.0f )
129   , mBlurUserImage( false )
130   , mRenderOnce( false )
131   , mBackgroundColor( Color::BLACK )
132   , mTargetSize(Vector2::ZERO)
133   , mLastSize(Vector2::ZERO)
134   , mChildrenRoot(Actor::New())
135   , mInternalRoot(Actor::New())
136   , mBlurStrengthPropertyIndex(Property::INVALID_INDEX)
137   , mActivated( false )
138 {
139   SetBlurBellCurveWidth(GAUSSIAN_BLUR_VIEW_DEFAULT_BLUR_BELL_CURVE_WIDTH);
140 }
141
142 GaussianBlurView::GaussianBlurView( const unsigned int numSamples, const float blurBellCurveWidth, const Pixel::Format renderTargetPixelFormat,
143                                     const float downsampleWidthScale, const float downsampleHeightScale,
144                                     bool blurUserImage)
145   : Control( ControlBehaviour( DISABLE_SIZE_NEGOTIATION ) )
146   , mNumSamples(numSamples)
147   , mBlurBellCurveWidth( 0.001f )
148   , mPixelFormat(renderTargetPixelFormat)
149   , mDownsampleWidthScale(downsampleWidthScale)
150   , mDownsampleHeightScale(downsampleHeightScale)
151   , mDownsampledWidth( 0.0f )
152   , mDownsampledHeight( 0.0f )
153   , mBlurUserImage( blurUserImage )
154   , mRenderOnce( false )
155   , mBackgroundColor( Color::BLACK )
156   , mTargetSize(Vector2::ZERO)
157   , mLastSize(Vector2::ZERO)
158   , mChildrenRoot(Actor::New())
159   , mInternalRoot(Actor::New())
160   , mBlurStrengthPropertyIndex(Property::INVALID_INDEX)
161   , mActivated( false )
162 {
163   SetBlurBellCurveWidth(blurBellCurveWidth);
164 }
165
166 GaussianBlurView::~GaussianBlurView()
167 {
168 }
169
170
171 Toolkit::GaussianBlurView GaussianBlurView::New()
172 {
173   GaussianBlurView* impl = new GaussianBlurView();
174
175   Dali::Toolkit::GaussianBlurView handle = Dali::Toolkit::GaussianBlurView( *impl );
176
177   // Second-phase init of the implementation
178   // This can only be done after the CustomActor connection has been made...
179   impl->Initialize();
180
181   return handle;
182 }
183
184 Toolkit::GaussianBlurView GaussianBlurView::New(const unsigned int numSamples, const float blurBellCurveWidth, const Pixel::Format renderTargetPixelFormat,
185                                                 const float downsampleWidthScale, const float downsampleHeightScale,
186                                                 bool blurUserImage)
187 {
188   GaussianBlurView* impl = new GaussianBlurView( numSamples, blurBellCurveWidth, renderTargetPixelFormat,
189                                                  downsampleWidthScale, downsampleHeightScale,
190                                                  blurUserImage);
191
192   Dali::Toolkit::GaussianBlurView handle = Dali::Toolkit::GaussianBlurView( *impl );
193
194   // Second-phase init of the implementation
195   // This can only be done after the CustomActor connection has been made...
196   impl->Initialize();
197
198   return handle;
199 }
200
201 /////////////////////////////////////////////////////////////
202 // for creating a subtree for all user added child actors, so that we can have them exclusive to the mRenderChildrenTask and our other actors exclusive to our other tasks
203 // DEPRECATED: overloading Actor::Add()/Remove() not nice since breaks polymorphism. Need another method to pass ownership of added child actors to our internal actor root.
204 void GaussianBlurView::Add(Actor child)
205 {
206   mChildrenRoot.Add(child);
207 }
208
209 void GaussianBlurView::Remove(Actor child)
210 {
211   mChildrenRoot.Remove(child);
212 }
213
214 void GaussianBlurView::SetUserImageAndOutputRenderTarget(Image inputImage, FrameBufferImage outputRenderTarget)
215 {
216   // can only do this if the GaussianBlurView object was created with this parameter set
217   DALI_ASSERT_ALWAYS(mBlurUserImage);
218
219   mUserInputImage = inputImage;
220   mImageViewHorizBlur.SetImage( mUserInputImage );
221
222   mUserOutputRenderTarget = outputRenderTarget;
223 }
224
225 FrameBufferImage GaussianBlurView::GetBlurredRenderTarget() const
226 {
227   if(!mUserOutputRenderTarget)
228   {
229     return mRenderTargetForRenderingChildren;
230   }
231
232   return mUserOutputRenderTarget;
233 }
234
235 void GaussianBlurView::SetBackgroundColor( const Vector4& color )
236 {
237   mBackgroundColor = color;
238 }
239
240 Vector4 GaussianBlurView::GetBackgroundColor() const
241 {
242   return mBackgroundColor;
243 }
244
245 ///////////////////////////////////////////////////////////
246 //
247 // Private methods
248 //
249
250 void GaussianBlurView::OnInitialize()
251 {
252   // root actor to parent all user added actors, needed to allow us to set that subtree as exclusive for our child render task
253   mChildrenRoot.SetParentOrigin(ParentOrigin::CENTER);
254   mInternalRoot.SetParentOrigin(ParentOrigin::CENTER);
255
256   //////////////////////////////////////////////////////
257   // Create shaders
258
259   std::ostringstream horizFragmentShaderStringStream;
260   horizFragmentShaderStringStream << "#define NUM_SAMPLES " << mNumSamples << "\n";
261   horizFragmentShaderStringStream << GAUSSIAN_BLUR_FRAGMENT_SOURCE;
262   Property::Map customShader;
263   customShader[ "fragmentShader" ] = horizFragmentShaderStringStream.str();
264   Property::Map rendererMap;
265   rendererMap.Insert( "rendererType", "image" );
266   rendererMap.Insert( "shader", customShader );
267
268   //////////////////////////////////////////////////////
269   // Create actors
270
271   // Create an image view for performing a horizontal blur on the texture
272   mImageViewHorizBlur = Toolkit::ImageView::New();
273   mImageViewHorizBlur.SetParentOrigin(ParentOrigin::CENTER);
274   mImageViewHorizBlur.SetProperty( Toolkit::ImageView::Property::IMAGE, rendererMap );
275
276   // Create an image view for performing a vertical blur on the texture
277   mImageViewVertBlur = Toolkit::ImageView::New();
278   mImageViewVertBlur.SetParentOrigin(ParentOrigin::CENTER);
279   mImageViewVertBlur.SetProperty( Toolkit::ImageView::Property::IMAGE, rendererMap );
280
281   // Register a property that the user can control to fade the blur in / out via the GaussianBlurView object
282   Actor self = Self();
283   mBlurStrengthPropertyIndex = self.RegisterProperty(GAUSSIAN_BLUR_VIEW_STRENGTH_PROPERTY_NAME, GAUSSIAN_BLUR_VIEW_DEFAULT_BLUR_STRENGTH);
284
285   // Create an image view for compositing the blur and the original child actors render
286   if(!mBlurUserImage)
287   {
288     mImageViewComposite = Toolkit::ImageView::New();
289     mImageViewComposite.SetParentOrigin(ParentOrigin::CENTER);
290     mImageViewComposite.SetOpacity(GAUSSIAN_BLUR_VIEW_DEFAULT_BLUR_STRENGTH); // ensure alpha is enabled for this object and set default value
291
292     Constraint blurStrengthConstraint = Constraint::New<float>( mImageViewComposite, Actor::Property::COLOR_ALPHA, EqualToConstraint());
293     blurStrengthConstraint.AddSource( Source( self, mBlurStrengthPropertyIndex) );
294     blurStrengthConstraint.Apply();
295
296     // Create an image view for holding final result, i.e. the blurred image. This will get rendered to screen later, via default / user render task
297     mTargetActor = Toolkit::ImageView::New();
298     mTargetActor.SetParentOrigin(ParentOrigin::CENTER);
299
300     //////////////////////////////////////////////////////
301     // Create cameras for the renders corresponding to the view size
302     mRenderFullSizeCamera = CameraActor::New();
303     mRenderFullSizeCamera.SetInvertYAxis( true );
304     mRenderFullSizeCamera.SetParentOrigin(ParentOrigin::CENTER);
305
306
307     //////////////////////////////////////////////////////
308     // Connect to actor tree
309     mInternalRoot.Add( mImageViewComposite );
310     mInternalRoot.Add( mTargetActor );
311     mInternalRoot.Add( mRenderFullSizeCamera );
312   }
313
314
315   //////////////////////////////////////////////////////
316   // Create camera for the renders corresponding to the (potentially downsampled) render targets' size
317   mRenderDownsampledCamera = CameraActor::New();
318   mRenderDownsampledCamera.SetInvertYAxis( true );
319   mRenderDownsampledCamera.SetParentOrigin(ParentOrigin::CENTER);
320
321
322   //////////////////////////////////////////////////////
323   // Connect to actor tree
324   Self().Add( mChildrenRoot );
325   Self().Add( mInternalRoot );
326   mInternalRoot.Add( mImageViewHorizBlur );
327   mInternalRoot.Add( mImageViewVertBlur );
328   mInternalRoot.Add( mRenderDownsampledCamera );
329 }
330
331
332 void GaussianBlurView::OnSizeSet(const Vector3& targetSize)
333 {
334   Control::OnSizeSet( targetSize );
335
336   mTargetSize = Vector2(targetSize);
337
338   mChildrenRoot.SetSize(targetSize);
339
340   if( !mBlurUserImage )
341   {
342     mImageViewComposite.SetSize(targetSize);
343     mTargetActor.SetSize(targetSize);
344
345     // Children render camera must move when GaussianBlurView object is resized. This is since we cannot change render target size - so we need to remap the child actors' rendering
346     // accordingly so they still exactly fill the render target. Note that this means the effective resolution of the child render changes as the GaussianBlurView object changes
347     // size, this is the trade off for not being able to modify render target size
348     // Change camera z position based on GaussianBlurView actor height
349     float cameraPosConstraintScale = 0.5f / tanf(ARBITRARY_FIELD_OF_VIEW * 0.5f);
350     mRenderFullSizeCamera.SetZ(mTargetSize.height * cameraPosConstraintScale);
351   }
352
353
354   // if we have already activated the blur, need to update render target sizes now to reflect the new size of this actor
355   if(mActivated)
356   {
357     Deactivate();
358     Activate();
359   }
360 }
361
362 void GaussianBlurView::OnChildAdd( Actor& child )
363 {
364   Control::OnChildAdd( child );
365
366   if( child != mChildrenRoot && child != mInternalRoot)
367   {
368     mChildrenRoot.Add( child );
369   }
370 }
371
372 void GaussianBlurView::OnChildRemove( Actor& child )
373 {
374   mChildrenRoot.Remove( child );
375
376   Control::OnChildRemove( child );
377 }
378
379 void GaussianBlurView::AllocateResources()
380 {
381   // size of render targets etc is based on the size of this actor, ignoring z
382   if(mTargetSize != mLastSize)
383   {
384     mLastSize = mTargetSize;
385
386     // get size of downsampled render targets
387     mDownsampledWidth = mTargetSize.width * mDownsampleWidthScale;
388     mDownsampledHeight = mTargetSize.height * mDownsampleHeightScale;
389
390     // Create and place a camera for the renders corresponding to the (potentially downsampled) render targets' size
391     mRenderDownsampledCamera.SetFieldOfView(ARBITRARY_FIELD_OF_VIEW);
392     // TODO: how do we pick a reasonable value for near clip? Needs to relate to normal camera the user renders with, but we don't have a handle on it
393     mRenderDownsampledCamera.SetNearClippingPlane(1.0f);
394     mRenderDownsampledCamera.SetAspectRatio(mDownsampledWidth / mDownsampledHeight);
395     mRenderDownsampledCamera.SetType(Dali::Camera::FREE_LOOK); // camera orientation based solely on actor
396
397     mRenderDownsampledCamera.SetPosition(0.0f, 0.0f, ((mDownsampledHeight * 0.5f) / tanf(ARBITRARY_FIELD_OF_VIEW * 0.5f)));
398
399     // setup for normal operation
400     if(!mBlurUserImage)
401     {
402       // Create and place a camera for the children render, corresponding to its render target size
403       mRenderFullSizeCamera.SetFieldOfView(ARBITRARY_FIELD_OF_VIEW);
404       // TODO: how do we pick a reasonable value for near clip? Needs to relate to normal camera the user renders with, but we don't have a handle on it
405       mRenderFullSizeCamera.SetNearClippingPlane(1.0f);
406       mRenderFullSizeCamera.SetAspectRatio(mTargetSize.width / mTargetSize.height);
407       mRenderFullSizeCamera.SetType(Dali::Camera::FREE_LOOK); // camera orientation based solely on actor
408
409       float cameraPosConstraintScale = 0.5f / tanf(ARBITRARY_FIELD_OF_VIEW * 0.5f);
410       mRenderFullSizeCamera.SetPosition(0.0f, 0.0f, mTargetSize.height * cameraPosConstraintScale);
411
412       // create offscreen buffer of new size to render our child actors to
413       mRenderTargetForRenderingChildren = FrameBufferImage::New( mTargetSize.width, mTargetSize.height, mPixelFormat );
414
415       // Set image view for performing a horizontal blur on the texture
416       mImageViewHorizBlur.SetImage( mRenderTargetForRenderingChildren );
417
418       // Create offscreen buffer for vert blur pass
419       mRenderTarget1 = FrameBufferImage::New( mDownsampledWidth, mDownsampledHeight, mPixelFormat );
420
421       // use the completed blur in the first buffer and composite with the original child actors render
422       mImageViewComposite.SetImage( mRenderTarget1 );
423
424       // set up target actor for rendering result, i.e. the blurred image
425       mTargetActor.SetImage(mRenderTargetForRenderingChildren);
426     }
427
428     // Create offscreen buffer for horiz blur pass
429     mRenderTarget2 = FrameBufferImage::New( mDownsampledWidth, mDownsampledHeight, mPixelFormat );
430
431     // size needs to match render target
432     mImageViewHorizBlur.SetSize(mDownsampledWidth, mDownsampledHeight);
433
434     // size needs to match render target
435     mImageViewVertBlur.SetImage( mRenderTarget2 );
436     mImageViewVertBlur.SetSize(mDownsampledWidth, mDownsampledHeight);
437
438     // set gaussian blur up for new sized render targets
439     SetShaderConstants();
440   }
441 }
442
443 void GaussianBlurView::CreateRenderTasks()
444 {
445   RenderTaskList taskList = Stage::GetCurrent().GetRenderTaskList();
446
447   if(!mBlurUserImage)
448   {
449     // create render task to render our child actors to offscreen buffer
450     mRenderChildrenTask = taskList.CreateTask();
451     mRenderChildrenTask.SetSourceActor( mChildrenRoot );
452     mRenderChildrenTask.SetExclusive(true);
453     mRenderChildrenTask.SetInputEnabled( false );
454     mRenderChildrenTask.SetClearEnabled( true );
455     mRenderChildrenTask.SetClearColor( mBackgroundColor );
456
457     mRenderChildrenTask.SetCameraActor(mRenderFullSizeCamera);
458     mRenderChildrenTask.SetTargetFrameBuffer( mRenderTargetForRenderingChildren );
459   }
460
461   // perform a horizontal blur targeting the second buffer
462   mHorizBlurTask = taskList.CreateTask();
463   mHorizBlurTask.SetSourceActor( mImageViewHorizBlur );
464   mHorizBlurTask.SetExclusive(true);
465   mHorizBlurTask.SetInputEnabled( false );
466   mHorizBlurTask.SetClearEnabled( true );
467   mHorizBlurTask.SetClearColor( mBackgroundColor );
468   mHorizBlurTask.SetCameraActor(mRenderDownsampledCamera);
469   mHorizBlurTask.SetTargetFrameBuffer( mRenderTarget2 );
470   if( mRenderOnce && mBlurUserImage )
471   {
472     mHorizBlurTask.SetRefreshRate(RenderTask::REFRESH_ONCE);
473   }
474
475   // use the second buffer and perform a horizontal blur targeting the first buffer
476   mVertBlurTask = taskList.CreateTask();
477   mVertBlurTask.SetSourceActor( mImageViewVertBlur );
478   mVertBlurTask.SetExclusive(true);
479   mVertBlurTask.SetInputEnabled( false );
480   mVertBlurTask.SetClearEnabled( true );
481   mVertBlurTask.SetClearColor( mBackgroundColor );
482   mVertBlurTask.SetCameraActor(mRenderDownsampledCamera);
483   if(mUserOutputRenderTarget)
484   {
485     mVertBlurTask.SetTargetFrameBuffer( mUserOutputRenderTarget );
486   }
487   else
488   {
489     mVertBlurTask.SetTargetFrameBuffer( mRenderTarget1 );
490   }
491   if( mRenderOnce && mBlurUserImage )
492   {
493     mVertBlurTask.SetRefreshRate(RenderTask::REFRESH_ONCE);
494     mVertBlurTask.FinishedSignal().Connect( this, &GaussianBlurView::OnRenderTaskFinished );
495   }
496
497   // use the completed blur in the first buffer and composite with the original child actors render
498   if(!mBlurUserImage)
499   {
500     mCompositeTask = taskList.CreateTask();
501     mCompositeTask.SetSourceActor( mImageViewComposite );
502     mCompositeTask.SetExclusive(true);
503     mCompositeTask.SetInputEnabled( false );
504
505     mCompositeTask.SetCameraActor(mRenderFullSizeCamera);
506     mCompositeTask.SetTargetFrameBuffer( mRenderTargetForRenderingChildren );
507   }
508 }
509
510 void GaussianBlurView::RemoveRenderTasks()
511 {
512   RenderTaskList taskList = Stage::GetCurrent().GetRenderTaskList();
513
514   taskList.RemoveTask(mRenderChildrenTask);
515   taskList.RemoveTask(mHorizBlurTask);
516   taskList.RemoveTask(mVertBlurTask);
517   taskList.RemoveTask(mCompositeTask);
518 }
519
520 void GaussianBlurView::Activate()
521 {
522   // make sure resources are allocated and start the render tasks processing
523   AllocateResources();
524   CreateRenderTasks();
525   mActivated = true;
526 }
527
528 void GaussianBlurView::ActivateOnce()
529 {
530   DALI_ASSERT_ALWAYS(mBlurUserImage); // Only works with blurring image mode.
531   mRenderOnce = true;
532   Activate();
533 }
534
535 void GaussianBlurView::Deactivate()
536 {
537   // stop render tasks processing
538   // Note: render target resources are automatically freed since we set the Image::Unused flag
539   RemoveRenderTasks();
540   mRenderTargetForRenderingChildren.Reset();
541   mRenderTarget1.Reset();
542   mRenderTarget2.Reset();
543   mRenderOnce = false;
544   mActivated = false;
545 }
546
547 void GaussianBlurView::SetBlurBellCurveWidth(float blurBellCurveWidth)
548 {
549   // a value of zero leads to undefined Gaussian weights, do not allow user to do this
550   mBlurBellCurveWidth = std::max( blurBellCurveWidth, 0.001f );
551 }
552
553 float GaussianBlurView::CalcGaussianWeight(float x)
554 {
555   return (1.0f / sqrt(2.0f * Math::PI * mBlurBellCurveWidth)) * exp(-(x * x) / (2.0f * mBlurBellCurveWidth * mBlurBellCurveWidth));
556 }
557
558 void GaussianBlurView::SetShaderConstants()
559 {
560   Vector2 *uvOffsets;
561   float ofs;
562   float *weights;
563   float w, totalWeights;
564   unsigned int i;
565
566   uvOffsets = new Vector2[mNumSamples + 1];
567   weights = new float[mNumSamples + 1];
568
569   totalWeights = weights[0] = CalcGaussianWeight(0);
570   uvOffsets[0].x = 0.0f;
571   uvOffsets[0].y = 0.0f;
572
573   for(i=0; i<mNumSamples >> 1; i++)
574   {
575     w = CalcGaussianWeight((float)(i + 1));
576     weights[(i << 1) + 1] = w;
577     weights[(i << 1) + 2] = w;
578     totalWeights += w * 2.0f;
579
580     // offset texture lookup to between texels, that way the bilinear filter in the texture hardware will average two samples with one lookup
581     ofs = ((float)(i << 1)) + 1.5f;
582
583     // get offsets from units of pixels into uv coordinates in [0..1]
584     float ofsX = ofs / mDownsampledWidth;
585     float ofsY = ofs / mDownsampledHeight;
586     uvOffsets[(i << 1) + 1].x = ofsX;
587     uvOffsets[(i << 1) + 1].y = ofsY;
588
589     uvOffsets[(i << 1) + 2].x = -ofsX;
590     uvOffsets[(i << 1) + 2].y = -ofsY;
591   }
592
593   for(i=0; i<mNumSamples; i++)
594   {
595     weights[i] /= totalWeights;
596   }
597
598   // set shader constants
599   Vector2 xAxis(1.0f, 0.0f);
600   Vector2 yAxis(0.0f, 1.0f);
601   for (i = 0; i < mNumSamples; ++i )
602   {
603     mImageViewHorizBlur.RegisterProperty( GetSampleOffsetsPropertyName( i ), uvOffsets[ i ] * xAxis );
604     mImageViewHorizBlur.RegisterProperty( GetSampleWeightsPropertyName( i ), weights[ i ] );
605
606     mImageViewVertBlur.RegisterProperty( GetSampleOffsetsPropertyName( i ), uvOffsets[ i ] * yAxis );
607     mImageViewVertBlur.RegisterProperty( GetSampleWeightsPropertyName( i ), weights[ i ] );
608   }
609
610   delete[] uvOffsets;
611   delete[] weights;
612 }
613
614 std::string GaussianBlurView::GetSampleOffsetsPropertyName( unsigned int index ) const
615 {
616   DALI_ASSERT_ALWAYS( index < mNumSamples );
617
618   std::ostringstream oss;
619   oss << "uSampleOffsets[" << index << "]";
620   return oss.str();
621 }
622
623 std::string GaussianBlurView::GetSampleWeightsPropertyName( unsigned int index ) const
624 {
625   DALI_ASSERT_ALWAYS( index < mNumSamples );
626
627   std::ostringstream oss;
628   oss << "uSampleWeights[" << index << "]";
629   return oss.str();
630 }
631
632 Dali::Toolkit::GaussianBlurView::GaussianBlurViewSignal& GaussianBlurView::FinishedSignal()
633 {
634   return mFinishedSignal;
635 }
636
637 void GaussianBlurView::OnRenderTaskFinished(Dali::RenderTask& renderTask)
638 {
639   Toolkit::GaussianBlurView handle( GetOwner() );
640   mFinishedSignal.Emit( handle );
641 }
642
643 } // namespace Internal
644 } // namespace Toolkit
645 } // namespace Dali