X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fcontrols%2Frenderers%2Fimage%2Fimage-renderer.h;h=b208b4473a6f8335e7498ad32eec3c828c347985;hp=367ae31f6b9bdc58da552162a8d4f215b3c0f7b0;hb=8a37fe59c9b77bc32c6998721d335cc1c41c44db;hpb=4c1f4bfb9eb5b956b64a6c9bf077217fc0ca9234 diff --git a/dali-toolkit/internal/controls/renderers/image/image-renderer.h b/dali-toolkit/internal/controls/renderers/image/image-renderer.h index 367ae31..b208b44 100644 --- a/dali-toolkit/internal/controls/renderers/image/image-renderer.h +++ b/dali-toolkit/internal/controls/renderers/image/image-renderer.h @@ -20,14 +20,18 @@ // INTERNAL INCLUDES #include +#include // EXTERNAL INCLUDES #include #include +#include namespace Dali { +class NativeImage; + namespace Toolkit { @@ -42,40 +46,43 @@ typedef IntrusivePtr< ImageRenderer > ImageRendererPtr; * * The following properties are optional * - * | %Property Name | Type | - * |---------------------------|------------------| - * | image-url | STRING | - * | image-fitting-mode | STRING | - * | image-sampling-mode | STRING | - * | image-desired-width | INT | - * | image-desired-height | INT | + * | %Property Name | Type | + * |-------------------------|------------------| + * | imageUrl | STRING | + * | imageFittingMode | STRING | + * | imageSamplingMode | STRING | + * | imageDesiredWidth | INT | + * | imageDesiredHeight | INT | * - * where image-fitting-mode should be one of the following fitting modes: - * "shrink-to-fit" - * "scale-to-fill" - * "fit-width" - * "fit-height" + * where imageFittingMode should be one of the following fitting modes: + * "shrinkToFit" + * "scaleToFill" + * "fitWidth" + * "fitHeight" * "default" * - * where image-sampling-mode should be one of the following sampling modes: + * where imageSamplingMode should be one of the following sampling modes: * "box" * "nearest" * "linear" - * "box-then-nearest" - * "box-then-linear" - * "no-filter" - * "dont-care" + * "boxThenNearest" + * "boxThenLinear" + * "noFilter" + * "dontCare" * "default" * */ -class ImageRenderer: public ControlRenderer +class ImageRenderer: public ControlRenderer, public ConnectionTracker { public: /** * @brief Constructor. + * + * @param[in] factoryCache The RendererFactoryCache object + * @param[in] atlasManager The atlasManager object */ - ImageRenderer(); + ImageRenderer( RendererFactoryCache& factoryCache, ImageAtlasManager& atlasManager ); /** * @brief A reference counted object may only be deleted by calling Unreference(). @@ -85,11 +92,6 @@ public: public: // from ControlRenderer /** - * @copydoc ControlRenderer::DoInitialize - */ - virtual void DoInitialize( RendererFactoryCache& factoryCache, const Property::Map& propertyMap ); - - /** * @copydoc ControlRenderer::SetSize */ virtual void SetSize( const Vector2& size ); @@ -116,6 +118,11 @@ public: // from ControlRenderer protected: /** + * @copydoc ControlRenderer::DoInitialize + */ + virtual void DoInitialize( Actor& actor, const Property::Map& propertyMap ); + + /** * @copydoc ControlRenderer::DoSetOnStage */ virtual void DoSetOnStage( Actor& actor ); @@ -128,61 +135,113 @@ protected: public: /** - * Request the geometry and shader from the cache, if not available, create and save to the cache for sharing. - * + * Get the standard image rendering shader. * @param[in] factoryCache A pointer pointing to the RendererFactoryCache object */ - void Initialize( RendererFactoryCache& factoryCache ); - - /** - * @brief Sets the image of this renderer to the resource at imageUrl - * The renderer will load the Image asynchronously when the associated actor is put on stage, and destroy the image when it is off stage - * - * @param[in] imageUrl The URL to to image resource to use - */ - void SetImage( const std::string& imageUrl ); + static Shader GetImageShader( RendererFactoryCache& factoryCache ); /** * @brief Sets the image of this renderer to the resource at imageUrl * The renderer will load the Image asynchronously when the associated actor is put on stage, and destroy the image when it is off stage * + * @param[in] actor The Actor the renderer is applied to if, empty if the renderer has not been applied to any Actor * @param[in] imageUrl The URL to to image resource to use - * @param[in] desiredWidth The desired width of the resource to load - * @param[in] desiredHeight The desired height of the resource to load + * @param[in] size The width and height to fit the loaded image to. * @param[in] fittingMode The FittingMode of the resource to load * @param[in] samplingMode The SamplingMode of the resource to load */ - void SetImage( const std::string& imageUrl, int desiredWidth, int desiredHeight, Dali::FittingMode::Type fittingMode, Dali::SamplingMode::Type samplingMode ); + void SetImage( Actor& actor, + const std::string& imageUrl, + ImageDimensions size=ImageDimensions(), + FittingMode::Type fittingMode = FittingMode::DEFAULT, + Dali::SamplingMode::Type samplingMode = SamplingMode::BOX_THEN_LINEAR ); /** * @brief Sets the image of this renderer to use * + * @param[in] actor The Actor the renderer is applied to if, empty if the renderer has not been applied to any Actor * @param[in] image The image to use */ - void SetImage( Image image ); + void SetImage( Actor& actor, const Image& image ); /** - * @brief Gets the image this renderer uses + * @brief Set whether the Pre-multiplied Alpha Blending is required * - * @return The image this renderer uses, which may be null if the image is set from a URL string and the renderer is not set as onstage + * @param[in] preMultipled whether alpha is pre-multiplied. */ - Image GetImage() const; + void EnablePreMultipliedAlpha( bool preMultipled ); private: /** - * @brief Applies this renderer's image to the sampler to the material used for this renderer + * @brief Applies the image to the material used for this renderer + * + * @param[in] image The Image to apply to the material used for this renderer + */ + void ApplyImageToSampler( const Image& image ); + + /** + * @brief Initializes the Dali::Renderer from an image url string + * + * @param[in] imageUrl The image url string to intialize this ImageRenderer from + */ + void InitializeRenderer( const std::string& imageUrl ); + + /** + * @brief Initializes the Dali::Renderer from an image handle + * + * @param[in] image The image handle to intialize this ImageRenderer from + */ + void InitializeRenderer( const Image& image ); + + /** + * @brief Creates the Dali::Renderer (potentially from the renderer cache), initializing it + * + * @return Returns the created Dali::Renderer + */ + Renderer CreateRenderer() const; + + /** + * @brief Creates the Dali::Renderer for NativeImage with custom sampler type and prefix, initializing it + * + * @return Returns the created Dali::Renderer + */ + Renderer CreateNativeImageRenderer() const; + + /** + * Callback function of image resource loading succeed + * @param[in] image The Image content that we attempted to load from mImageUrl + */ + void OnImageLoaded( ResourceImage image ); + + /** + * Set the value to the uTextureRect uniform + * @param[in] textureRect The texture rectangular area. + */ + void SetTextureRectUniform( const Vector4& textureRect ); + + /** + * Clean the renderer from cache, and remove the image from atlas if it is not used anymore + */ + void CleanCache(const std::string& url); + + /** + * Set shader code for nativeimage if it exists */ - void ApplyImageToSampler(); + void SetNativeFragmentShaderCode( Dali::NativeImage& nativeImage ); private: Image mImage; + ImageAtlasManager& mAtlasManager; std::string mImageUrl; Dali::ImageDimensions mDesiredSize; Dali::FittingMode::Type mFittingMode; Dali::SamplingMode::Type mSamplingMode; + bool mIsAlphaPreMultiplied; + std::string mNativeFragmentShaderCode; + bool mNativeImageFlag; }; } // namespace Internal