X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fimaging%2Fcommon%2Floader-astc.cpp;h=ed13b8e3e8cd5f2688e68ea9714e6d19020ad3fa;hb=783e17c94e8adc4bd624031af599922c9eb1e0c6;hp=2dd25cd27a1e98aed49bf6362c015e31c019a7ee;hpb=4313bbfa84fc09f9e7ea89329d4e24c6fdf38faf;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/internal/imaging/common/loader-astc.cpp b/dali/internal/imaging/common/loader-astc.cpp old mode 100755 new mode 100644 index 2dd25cd..ed13b8e --- a/dali/internal/imaging/common/loader-astc.cpp +++ b/dali/internal/imaging/common/loader-astc.cpp @@ -26,10 +26,6 @@ #include #include -#include - -using namespace Dali::Internal::Platform; - namespace Dali { namespace TizenPlatform @@ -124,7 +120,7 @@ bool LoadAstcHeader( FILE * const filePointer, unsigned int& width, unsigned int { // Pull the bytes of the file header in as a block: const unsigned int readLength = sizeof( AstcFileHeader ); - if( InternalFile::fread( &fileHeader, 1, readLength, filePointer ) != readLength ) + if( fread( &fileHeader, 1, readLength, filePointer ) != readLength ) { return false; } @@ -200,20 +196,20 @@ bool LoadBitmapFromAstc( const ImageLoader::Input& input, Dali::Devel::PixelBuff } // Retrieve the file size. - if( InternalFile::fseek( filePointer, 0L, SEEK_END ) ) + if( fseek( filePointer, 0L, SEEK_END ) ) { DALI_LOG_ERROR( "Could not seek through file.\n" ); return false; } - off_t fileSize = InternalFile::ftell( filePointer ); + off_t fileSize = ftell( filePointer ); if( fileSize == -1L ) { DALI_LOG_ERROR( "Could not determine ASTC file size.\n" ); return false; } - if( InternalFile::fseek( filePointer, sizeof( AstcFileHeader ), SEEK_SET ) ) + if( fseek( filePointer, sizeof( AstcFileHeader ), SEEK_SET ) ) { DALI_LOG_ERROR( "Could not seek through file.\n" ); return false; @@ -243,7 +239,7 @@ bool LoadBitmapFromAstc( const ImageLoader::Input& input, Dali::Devel::PixelBuff } // Load the image data. - const size_t bytesRead = InternalFile::fread( pixels, 1, imageByteCount, filePointer ); + const size_t bytesRead = fread( pixels, 1, imageByteCount, filePointer ); // Check the size of loaded data is what we expected. if( bytesRead != imageByteCount )