X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Fpublic-api%2Fimage-loader%2Fimage.h;h=6fb28161f9d31bad6211be4813d2c3c02f6fb492;hb=1472fda30a44315490d628a4b36459b423364802;hp=1cf2550bcf58295714d9c92660c627fb1a103d6d;hpb=33f29d762e4410026a85521f05b7b66aa2d087d1;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/public-api/image-loader/image.h b/dali-toolkit/public-api/image-loader/image.h index 1cf2550..6fb2816 100644 --- a/dali-toolkit/public-api/image-loader/image.h +++ b/dali-toolkit/public-api/image-loader/image.h @@ -18,26 +18,23 @@ */ // EXTERNAL INCLUDES +#include #include #include -#include // INTERNAL INCLUDES #include namespace Dali { - namespace Toolkit { - /** * API to interface with the toolkit image * Allows developers to add FrameBuffer, PixelData and NativeImageSource to toolkit so that visuals can use them to render */ namespace Image { - /** * @brief Generate a Url from frame buffer. * This Url can be used in visuals to render the frame buffer. @@ -49,7 +46,7 @@ namespace Image * @param[in] height the height for this frame buffer * @return the Url string representing this frame buffer */ -DALI_TOOLKIT_API std::string GenerateUrl( const Dali::FrameBuffer frameBuffer, Pixel::Format pixelFormat, uint32_t width, uint32_t height ); +DALI_TOOLKIT_API std::string GenerateUrl(const Dali::FrameBuffer frameBuffer, Pixel::Format pixelFormat, uint32_t width, uint32_t height); /** * @brief Generate a Url from frame buffer. @@ -60,7 +57,7 @@ DALI_TOOLKIT_API std::string GenerateUrl( const Dali::FrameBuffer frameBuffer, P * @param[in] index the index of the attached color texture. * @return the Url string representing this frame buffer */ -DALI_TOOLKIT_API std::string GenerateUrl( const Dali::FrameBuffer frameBuffer, uint8_t index ); +DALI_TOOLKIT_API std::string GenerateUrl(const Dali::FrameBuffer frameBuffer, uint8_t index); /** * @brief Generate a Url from Pixel data. @@ -69,7 +66,7 @@ DALI_TOOLKIT_API std::string GenerateUrl( const Dali::FrameBuffer frameBuffer, u * @param[in] pixelData the pixel data to converted to Url * @return the Url string representing this pixel data */ -DALI_TOOLKIT_API std::string GenerateUrl( const Dali::PixelData pixelData ); +DALI_TOOLKIT_API std::string GenerateUrl(const Dali::PixelData pixelData); /** * @brief Generate a Url from native image source. @@ -78,12 +75,12 @@ DALI_TOOLKIT_API std::string GenerateUrl( const Dali::PixelData pixelData ); * @param[in] nativeImageSource the native image source to converted to Url * @return the Url string representing this native image source */ -DALI_TOOLKIT_API std::string GenerateUrl( const Dali::NativeImageSourcePtr nativeImageSource ); +DALI_TOOLKIT_API std::string GenerateUrl(const Dali::NativeImageSourcePtr nativeImageSource); -} // Image +} // namespace Image -} // Toolkit +} // namespace Toolkit -} // Dali +} // namespace Dali #endif // DALI_TOOLKIT_IMAGE_H