X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fwireframe%2Fwireframe-visual.cpp;h=09a7a8dc04848f8f7f99c4fcfe363b7178ef1fd3;hp=4299eb69c94c7f2c4a221ba40c3a84dcf0c3a866;hb=c211a7d84885dca19c90b4656055002865e6fce2;hpb=b81c20064def5a5017e77876effd01ddc5bb39d6 diff --git a/dali-toolkit/internal/visuals/wireframe/wireframe-visual.cpp b/dali-toolkit/internal/visuals/wireframe/wireframe-visual.cpp index 4299eb6..09a7a8d 100644 --- a/dali-toolkit/internal/visuals/wireframe/wireframe-visual.cpp +++ b/dali-toolkit/internal/visuals/wireframe/wireframe-visual.cpp @@ -64,6 +64,10 @@ void main()\n } +WireframeVisualPtr WireframeVisual::New( VisualFactoryCache& factoryCache ) +{ + return new WireframeVisual( factoryCache ); +} WireframeVisual::WireframeVisual( VisualFactoryCache& factoryCache ) : Visual::Base( factoryCache ) @@ -71,7 +75,8 @@ WireframeVisual::WireframeVisual( VisualFactoryCache& factoryCache ) } WireframeVisual::~WireframeVisual() -{} +{ +} void WireframeVisual::DoSetOnStage( Actor& actor ) { @@ -86,6 +91,17 @@ void WireframeVisual::DoCreatePropertyMap( Property::Map& map ) const map.Insert( Toolkit::Visual::Property::TYPE, Toolkit::Visual::WIREFRAME ); } +void WireframeVisual::DoSetProperty( Dali::Property::Index index, const Dali::Property::Value& propertyValue ) +{ + // TODO +} + +Dali::Property::Value WireframeVisual::DoGetProperty( Dali::Property::Index index ) +{ + // TODO + return Dali::Property::Value(); +} + void WireframeVisual::InitializeRenderer() { mImpl->mRenderer = mFactoryCache.GetWireframeRenderer();