Exposing Exif Image metadata
[platform/core/uifw/dali-adaptor.git] / platform-abstractions / tizen / image-loaders / loader-astc.h
index 6b43542..f5cf6b4 100644 (file)
@@ -2,7 +2,7 @@
 #define __DALI_TIZEN_PLATFORM_LOADER_ASTC_H__
 
 /*
- * Copyright (c) 2016 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2017 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.
 
 namespace Dali
 {
-
-namespace Integration
+namespace Devel
 {
-  class Bitmap;
+class PixelBuffer;
 }
 
+
 namespace TizenPlatform
 {
 
@@ -45,12 +45,11 @@ const unsigned char MAGIC_BYTE_2 = 0xAB;
  * Loads a compressed bitmap image from a ASTC file without decoding it.
  * This function checks the header first
  * and if it is not a ASTC file, or the header contents are invalid, it will return a failure.
- * @param[in]     client todor
- * @param[in]     input  Information about the input image (including file pointer)
- * @param[in/out] bitmap The bitmap class where the decoded image will be stored
- * @return               True if file loaded successfully, false otherwise
+ * @param[in]  input  Information about the input image (including file pointer)
+ * @param[out] bitmap The bitmap class where the decoded image will be stored
+ * @return True if file loaded successfully, false otherwise
  */
-bool LoadBitmapFromAstc( const ResourceLoadingClient& client, const ImageLoader::Input& input, Integration::Bitmap& bitmap );
+bool LoadBitmapFromAstc( const ImageLoader::Input& input, Dali::Devel::PixelBuffer& bitmap );
 
 /**
  * Loads the header of a ASTC file and fills in the width and height appropriately.