diff options
author | Yury Usishchev <y.usishchev@samsung.com> | 2014-09-23 12:45:39 +0400 |
---|---|---|
committer | Yury Usishchev <y.usishchev@samsung.com> | 2014-09-24 12:55:34 +0400 |
commit | dc5a8cde26f73605653d5b1054a1f64952368bc0 (patch) | |
tree | 0e1e43f03985f88fbf565df0deb519131f2c42b1 | |
parent | 3afbefd93732aac3fec16552f34b1d5b34577379 (diff) | |
download | dali-demo-tizen_3.0.2014.q3_common.tar.gz dali-demo-tizen_3.0.2014.q3_common.tar.bz2 dali-demo-tizen_3.0.2014.q3_common.zip |
Remove unused functionstizen_3.0.2014.q3_common_releasesubmit/tizen_mobile/20141120.000000submit/tizen_common/20140925.141856accepted/tizen/common/20140925.172114tizen_3.0.2014.q3_commonaccepted/tizen_3.0.2014.q3_common
Change-Id: I8afdf46a775188a076a0114ab43275c0c56069c2
Signed-off-by: Yury Usishchev <y.usishchev@samsung.com>
-rw-r--r-- | demo/dali-table-view.cpp | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/demo/dali-table-view.cpp b/demo/dali-table-view.cpp index 7b1fefb8..00bda38d 100644 --- a/demo/dali-table-view.cpp +++ b/demo/dali-table-view.cpp @@ -92,18 +92,6 @@ const Dali::TextStyle::Weight TABLE_TEXT_STYLE_WEIGHT(Dali::TextStyle::LIGHT); const Dali::Vector4 TABLE_TEXT_STYLE_COLOR(0.0f, 0.0f, 0.0f, 1.0f); -TextStyle GetDefaultTextStyle() -{ - TextStyle textStyle; - textStyle.SetFontName(DEFAULT_TEXT_STYLE_FONT_FAMILY); - textStyle.SetFontStyle(DEFAULT_TEXT_STYLE_FONT_STYLE); - textStyle.SetFontPointSize( Dali::PointSize(DemoHelper::ScalePointSize(DEFAULT_TEXT_STYLE_POINT_SIZE))); - textStyle.SetWeight(DEFAULT_TEXT_STYLE_WEIGHT); - textStyle.SetTextColor(DEFAULT_TEXT_STYLE_COLOR); - textStyle.SetShadow( true ); - return textStyle; -} - TextStyle GetTableTextStyle() { TextStyle textStyle; @@ -172,15 +160,6 @@ Vector3 ShapeMovementConstraint( const Vector3& current, } /** - * Constraint to return a bool value based on the alpha channel value - */ -bool AlphaVisibleConstraint( bool current, const PropertyInput& alphaProperty ) -{ - Vector4 colour = alphaProperty.GetVector4(); - return ( colour.a > Math::MACHINE_EPSILON_10000 ); -} - -/** * Constraint to return a position for the background based on the scroll value */ struct AnimScrollConstraint |