X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git;a=blobdiff_plain;f=dali%2Finternal%2Fimaging%2Fcommon%2Floader-ktx.cpp;h=e43123933e6fc37425ab348b23ac016982f629ac;hp=0e0881bed0af60b185fd761330704bdf922bd580;hb=0e16b26dbe317545978954a6269a8139dcf8a0b6;hpb=d0729ba1475eb2f9a0d1d7b09ae0f5192c2f03f0 diff --git a/dali/internal/imaging/common/loader-ktx.cpp b/dali/internal/imaging/common/loader-ktx.cpp index 0e0881b..e431239 100755 --- a/dali/internal/imaging/common/loader-ktx.cpp +++ b/dali/internal/imaging/common/loader-ktx.cpp @@ -25,10 +25,6 @@ #include #include -#include - -using namespace Dali::Internal::Platform; - namespace Dali { @@ -198,7 +194,7 @@ inline bool ReadHeader( FILE* filePointer, KtxFileHeader& header ) const unsigned int readLength = sizeof( KtxFileHeader ); // Load the information directly into our structure - if( InternalFile::fread( &header, 1, readLength, filePointer ) != readLength ) + if( fread( &header, 1, readLength, filePointer ) != readLength ) { return false; } @@ -560,7 +556,7 @@ bool LoadBitmapFromKtx( const Dali::ImageLoader::Input& input, Dali::Devel::Pixe // Skip the key-values: const long int imageSizeOffset = sizeof(KtxFileHeader) + fileHeader.bytesOfKeyValueData; - if(InternalFile::fseek(fp, imageSizeOffset, SEEK_SET)) + if(fseek(fp, imageSizeOffset, SEEK_SET)) { DALI_LOG_ERROR( "Seek past key/vals in KTX compressed bitmap file failed.\n" ); return false; @@ -568,7 +564,7 @@ bool LoadBitmapFromKtx( const Dali::ImageLoader::Input& input, Dali::Devel::Pixe // Load the size of the image data: uint32_t imageByteCount = 0; - if ( InternalFile::fread( &imageByteCount, 1, 4, fp ) != 4 ) + if ( fread( &imageByteCount, 1, 4, fp ) != 4 ) { DALI_LOG_ERROR( "Read of image size failed.\n" ); return false; @@ -609,7 +605,7 @@ bool LoadBitmapFromKtx( const Dali::ImageLoader::Input& input, Dali::Devel::Pixe return false; } - const size_t bytesRead = InternalFile::fread(pixels, 1, imageByteCount, fp); + const size_t bytesRead = fread(pixels, 1, imageByteCount, fp); if(bytesRead != imageByteCount) { DALI_LOG_ERROR( "Read of image pixel data failed.\n" );