Fixed EffectView background color to match Visual defaults 45/209845/1
authorPaul Wisbey <p.wisbey@samsung.com>
Thu, 11 Jul 2019 15:07:30 +0000 (16:07 +0100)
committerPaul Wisbey <p.wisbey@samsung.com>
Thu, 11 Jul 2019 15:07:33 +0000 (16:07 +0100)
Since by default the renderers are expecting images with pre-multiplied alpha,
the default background color has been changed to match.

Change-Id: I47cb16dd551f058b6514ecc3afebfa704d7e444a

dali-toolkit/internal/controls/effects-view/effects-view-impl.cpp

index 8adc19d..d2e188d 100644 (file)
@@ -66,7 +66,7 @@ DALI_TYPE_REGISTRATION_END()
 
 const Pixel::Format EFFECTS_VIEW_DEFAULT_PIXEL_FORMAT = Pixel::RGBA8888;
 const float         ARBITRARY_FIELD_OF_VIEW = Math::PI / 4.0f;
-const Vector4       EFFECTS_VIEW_DEFAULT_BACKGROUND_COLOR( 1.0f, 1.0f, 1.0f, 0.0 );
+const Vector4       EFFECTS_VIEW_DEFAULT_BACKGROUND_COLOR( 0.0f, 0.0f, 0.0f, 0.0 );
 const bool          EFFECTS_VIEW_REFRESH_ON_DEMAND(false);
 
 // Visuals are not stylable or public