X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fvisuals%2Ftexture-upload-observer.h;h=d6657a27c0c802c23de77395b273bfaf0b508bd8;hb=77cfccf524aa92099d786a8ee13528b597593d48;hp=b00722c1a9d4b31a57ba63acdbd19f2fd5cfbb1d;hpb=2ffc3a77b8aa6f8ccdbaaef41c0fa14034853582;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/visuals/texture-upload-observer.h b/dali-toolkit/internal/visuals/texture-upload-observer.h index b00722c..d6657a2 100644 --- a/dali-toolkit/internal/visuals/texture-upload-observer.h +++ b/dali-toolkit/internal/visuals/texture-upload-observer.h @@ -2,7 +2,7 @@ #define DALI_TOOLKIT_INTERNAL_TEXTURE_UPLOAD_OBSERVER_H /* - * Copyright (c) 2020 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. @@ -23,18 +23,15 @@ #include // INTERNAL INCLUDES -#include #include +#include namespace Dali { - class TextureSet; namespace Toolkit { - - /** * @brief Base class used to observe the upload status of a texture. * @@ -44,8 +41,7 @@ namespace Toolkit class TextureUploadObserver { public: - - typedef Signal< void ( TextureUploadObserver* ) > DestructionSignalType; ///< Signal prototype for the Destruction Signal. + typedef Signal DestructionSignalType; ///< Signal prototype for the Destruction Signal. /** * @brief Constructor. @@ -68,8 +64,7 @@ public: * @param[in] atlasRect If using atlasing, this is the rectangle within the atlas to use. * @param[in] preMultiplied True if the image had pre-multiplied alpha applied */ - virtual void UploadComplete( bool loadSuccess, int32_t textureId, TextureSet textureSet, bool useAtlasing, - const Vector4& atlasRect, bool preMultiplied ) = 0; + virtual void UploadComplete(bool loadSuccess, int32_t textureId, TextureSet textureSet, bool useAtlasing, const Vector4& atlasRect, bool preMultiplied) = 0; /** * The action to be taken once the async load has finished. @@ -80,7 +75,7 @@ public: * @param[in] url The url address of the loaded image. * @param[in] preMultiplied True if the image had pre-multiplied alpha applied */ - virtual void LoadComplete( bool loadSuccess, Devel::PixelBuffer pixelBuffer, const Internal::VisualUrl& url, bool preMultiplied ) = 0; + virtual void LoadComplete(bool loadSuccess, Devel::PixelBuffer pixelBuffer, const Internal::VisualUrl& url, bool preMultiplied) = 0; /** * @brief Returns the destruction signal. @@ -90,12 +85,9 @@ public: DestructionSignalType& DestructionSignal(); private: - DestructionSignalType mDestructionSignal; ///< The destruction signal emitted when the observer is destroyed. - }; - } // namespace Toolkit } // namespace Dali