X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Fsvg%2Fsvg-visual.h;h=5910ff24666b0e61fd153d0dfc670718d1a07bcb;hb=c052b6678e2c6d8a65545dbbe4531ea7057c1999;hp=0f1dc95674834680d9af55c1627f1237e9848581;hpb=facc5c0abe18ba940652ae1a45ce0566ee76fd76;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/visuals/svg/svg-visual.h b/dali-toolkit/internal/visuals/svg/svg-visual.h index 0f1dc95..5910ff2 100644 --- a/dali-toolkit/internal/visuals/svg/svg-visual.h +++ b/dali-toolkit/internal/visuals/svg/svg-visual.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_INTERNAL_SVG_VISUAL_H /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2021 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. @@ -26,10 +26,6 @@ #include #include -#ifdef NO_THORVG -struct NSVGimage; -#endif /* NO_THORVG */ - namespace Dali { @@ -118,6 +114,11 @@ protected: virtual ~SvgVisual(); /** + * @copydoc Visual::Base::OnInitialize + */ + void OnInitialize() override; + + /** * @copydoc Visual::Base::DoSetProperties */ void DoSetProperties( const Property::Map& propertyMap ) override; @@ -144,15 +145,6 @@ protected: public: -#ifdef NO_THORVG - /** - * @bried Apply the rasterized image to the visual. - * - * @param[in] parsedSvg The data of parsed image. - * @param[in] rasterizedPixelData The pixel buffer with the rasterized pixels - */ - void ApplyRasterizedImage( NSVGimage* parsedSvg, PixelData rasterizedPixelData ); -#else /* NO_THORVG */ /** * @bried Apply the rasterized image to the visual. * @@ -161,22 +153,12 @@ public: * @param[in] bool Whether the resource is loaded */ void ApplyRasterizedImage( VectorImageRenderer vectorImage, PixelData rasterizedPixelData, bool isLoaded ); -#endif /* NO_THORVG */ private: -#ifdef NO_THORVG /** - * @brief Parses the SVG Image from the set URL. - * - * @param[in] imageUrl The URL of the image to parse the SVG from. - */ - void ParseFromUrl( const VisualUrl& imageUrl ); -#else /* NO_THORVG */ - /** - * @brief Load the SVG Image from the set URL. - */ - void Load(); -#endif /* NO_THORVG */ + * @brief Load the SVG Image from the set URL. + */ + void Load(); /** * @bried Rasterize the svg with the given size, and add it to the visual. @@ -202,17 +184,12 @@ private: ImageVisualShaderFactory& mImageVisualShaderFactory; Vector4 mAtlasRect; VisualUrl mImageUrl; -#ifdef NO_THORVG - NSVGimage* mParsedImage; -#else /* NO_THORVG */ VectorImageRenderer mVectorRenderer; uint32_t mDefaultWidth; uint32_t mDefaultHeight; - bool mLoaded; - bool mLocalResource; -#endif /* NO_THORVG */ WeakHandle mPlacementActor; Vector2 mVisualSize; + bool mLoadFailed; bool mAttemptAtlasing; ///< If true will attempt atlasing, otherwise create unique texture };