766eefe8407c22e812e1e5fc7a3f59c2ca9a8a66
[platform/core/uifw/dali-adaptor.git] / platform-abstractions / tizen / image-loaders / loader-ktx.cpp
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 // CLASS HEADER
19 #include "loader-ktx.h"
20
21 // EXTERNAL INCLUDES
22 #include <cstdio>
23 #include <cstdlib>
24 #include <cstring>
25 #include <stdint.h>
26 #include <dali/public-api/common/compile-time-assert.h>
27 #include <dali/integration-api/debug.h>
28 #include <dali/integration-api/bitmap.h>
29 #include <dali/public-api/images/pixel.h>
30
31 namespace Dali
32 {
33 using Integration::Bitmap;
34 using Dali::Integration::PixelBuffer;
35
36 namespace TizenPlatform
37 {
38
39 namespace
40 {
41
42 /** Max width or height of an image. */
43 const unsigned MAX_TEXTURE_DIMENSION = 4096;
44 /** Max bytes of image data allowed. Not a precise number, just a sanity check. */
45 const unsigned MAX_IMAGE_DATA_SIZE = MAX_TEXTURE_DIMENSION * MAX_TEXTURE_DIMENSION;
46 /** We don't read any of this but limit it to a resonable amount in order to be
47  * friendly to files from random tools. */
48 const unsigned MAX_BYTES_OF_KEYVALUE_DATA = 65536U;
49
50 typedef uint8_t Byte;
51
52 const Byte FileIdentifier[] = {
53    0xAB, 0x4B, 0x54, 0x58, 0x20, 0x31, 0x31, 0xBB, 0x0D, 0x0A, 0x1A, 0x0A
54 };
55
56
57 /** The formats we support inside a KTX file container.
58  *  Currently only compressed formats are allowed as we'd rather
59  *  use a PNG or JPEG with their own compression for the general
60  *  cases. */
61 enum KtxInternalFormat
62 {
63   KTX_NOTEXIST = 0,
64
65   // GLES 2 Extension formats:
66   KTX_ETC1_RGB8_OES                               = 0x8D64,
67   KTX_COMPRESSED_RGB_PVRTC_4BPPV1_IMG             = 0x8C00,
68
69   // GLES 3 Standard compressed formats (values same as in gl3.h):
70   KTX_COMPRESSED_R11_EAC                          = 0x9270,
71   KTX_COMPRESSED_SIGNED_R11_EAC                   = 0x9271,
72   KTX_COMPRESSED_RG11_EAC                         = 0x9272,
73   KTX_COMPRESSED_SIGNED_RG11_EAC                  = 0x9273,
74   KTX_COMPRESSED_RGB8_ETC2                        = 0x9274,
75   KTX_COMPRESSED_SRGB8_ETC2                       = 0x9275,
76   KTX_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2    = 0x9276,
77   KTX_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2   = 0x9277,
78   KTX_COMPRESSED_RGBA8_ETC2_EAC                   = 0x9278,
79   KTX_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC            = 0x9279,
80
81   // GLES 3.1 compressed formats:
82   KTX_COMPRESSED_RGBA_ASTC_4x4_KHR                = 0x93B0,
83   KTX_COMPRESSED_RGBA_ASTC_5x4_KHR                = 0x93B1,
84   KTX_COMPRESSED_RGBA_ASTC_5x5_KHR                = 0x93B2,
85   KTX_COMPRESSED_RGBA_ASTC_6x5_KHR                = 0x93B3,
86   KTX_COMPRESSED_RGBA_ASTC_6x6_KHR                = 0x93B4,
87   KTX_COMPRESSED_RGBA_ASTC_8x5_KHR                = 0x93B5,
88   KTX_COMPRESSED_RGBA_ASTC_8x6_KHR                = 0x93B6,
89   KTX_COMPRESSED_RGBA_ASTC_8x8_KHR                = 0x93B7,
90   KTX_COMPRESSED_RGBA_ASTC_10x5_KHR               = 0x93B8,
91   KTX_COMPRESSED_RGBA_ASTC_10x6_KHR               = 0x93B9,
92   KTX_COMPRESSED_RGBA_ASTC_10x8_KHR               = 0x93BA,
93   KTX_COMPRESSED_RGBA_ASTC_10x10_KHR              = 0x93BB,
94   KTX_COMPRESSED_RGBA_ASTC_12x10_KHR              = 0x93BC,
95   KTX_COMPRESSED_RGBA_ASTC_12x12_KHR              = 0x93BD,
96   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR        = 0x93D0,
97   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR        = 0x93D1,
98   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR        = 0x93D2,
99   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR        = 0x93D3,
100   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR        = 0x93D4,
101   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR        = 0x93D5,
102   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR        = 0x93D6,
103   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR        = 0x93D7,
104   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR       = 0x93D8,
105   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR       = 0x93D9,
106   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR       = 0x93DA,
107   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR      = 0x93DB,
108   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR      = 0x93DC,
109   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR      = 0x93DD,
110
111   KTX_SENTINEL = ~0u
112 };
113
114 const unsigned KtxInternalFormats[] =
115 {
116   // GLES 2 Extension formats:
117   KTX_ETC1_RGB8_OES,
118   KTX_COMPRESSED_RGB_PVRTC_4BPPV1_IMG,
119
120   // GLES 3 Standard compressed formats:
121   KTX_COMPRESSED_R11_EAC,
122   KTX_COMPRESSED_SIGNED_R11_EAC,
123   KTX_COMPRESSED_RG11_EAC,
124   KTX_COMPRESSED_SIGNED_RG11_EAC,
125   KTX_COMPRESSED_RGB8_ETC2,
126   KTX_COMPRESSED_SRGB8_ETC2,
127   KTX_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2,
128   KTX_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2,
129   KTX_COMPRESSED_RGBA8_ETC2_EAC,
130   KTX_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC,
131
132   // GLES 3.1 Compressed formats:
133   KTX_COMPRESSED_RGBA_ASTC_4x4_KHR,
134   KTX_COMPRESSED_RGBA_ASTC_5x4_KHR,
135   KTX_COMPRESSED_RGBA_ASTC_5x5_KHR,
136   KTX_COMPRESSED_RGBA_ASTC_6x5_KHR,
137   KTX_COMPRESSED_RGBA_ASTC_6x6_KHR,
138   KTX_COMPRESSED_RGBA_ASTC_8x5_KHR,
139   KTX_COMPRESSED_RGBA_ASTC_8x6_KHR,
140   KTX_COMPRESSED_RGBA_ASTC_8x8_KHR,
141   KTX_COMPRESSED_RGBA_ASTC_10x5_KHR,
142   KTX_COMPRESSED_RGBA_ASTC_10x6_KHR,
143   KTX_COMPRESSED_RGBA_ASTC_10x8_KHR,
144   KTX_COMPRESSED_RGBA_ASTC_10x10_KHR,
145   KTX_COMPRESSED_RGBA_ASTC_12x10_KHR,
146   KTX_COMPRESSED_RGBA_ASTC_12x12_KHR,
147   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR,
148   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR,
149   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR,
150   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR,
151   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR,
152   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR,
153   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR,
154   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR,
155   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR,
156   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR,
157   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR,
158   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR,
159   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR,
160   KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR,
161
162   KTX_SENTINEL
163 };
164
165 struct KtxFileHeader
166 {
167   Byte   identifier[12];
168   uint32_t endianness;
169   uint32_t glType;
170   uint32_t glTypeSize;
171   uint32_t glFormat;
172   uint32_t glInternalFormat;
173   uint32_t glBaseInternalFormat;
174   uint32_t pixelWidth;
175   uint32_t pixelHeight;
176   uint32_t pixelDepth;
177   uint32_t numberOfArrayElements;
178   uint32_t numberOfFaces;
179   uint32_t numberOfMipmapLevels;
180   uint32_t bytesOfKeyValueData;
181 } __attribute__ ( (__packed__));
182 // Packed attribute stops the structure from being aligned to compiler defaults
183 // so we can be sure of reading the whole thing from file in one call to fread.
184
185 /**
186  * Template function to read from the file directly into our structure.
187  * @param[in]  fp     The file to read from
188  * @param[out] header The structure we want to store our information in
189  * @return true, if read successful, false otherwise
190  */
191 template<typename T>
192 inline bool ReadHeader(FILE* fp, T& header)
193 {
194   unsigned int readLength = sizeof(T);
195
196   // Load the information directly into our structure
197   if (fread((void*)&header, 1, readLength, fp) != readLength)
198   {
199     return false;
200   }
201
202   return true;
203 }
204
205 /** Check whether the array passed in is the right size and matches the magic
206  *  values defined to be at the start of a KTX file by the specification.*/
207 template<int BYTES_IN_SIGNATURE>
208 bool CheckFileIdentifier(const Byte * const signature)
209 {
210   const unsigned signatureSize = BYTES_IN_SIGNATURE;
211   const unsigned identifierSize = sizeof(FileIdentifier);
212   DALI_COMPILE_TIME_ASSERT(signatureSize == identifierSize);
213   const bool signatureGood = 0 == memcmp( signature, FileIdentifier, std::min( signatureSize, identifierSize ) );
214   return signatureGood;
215 }
216
217 /**
218  * @returns True if the argument is a GLES compressed texture format that we support.
219  */
220 bool ValidInternalFormat(const unsigned format)
221 {
222   unsigned candidateFormat = 0;
223   for(unsigned iFormat = 0; (candidateFormat = KtxInternalFormats[iFormat]) != KTX_SENTINEL; ++iFormat)
224   {
225     if(format == candidateFormat)
226     {
227       return true;
228     }
229   }
230   DALI_LOG_ERROR("Rejecting unsupported compressed format when loading compressed texture from KTX file: 0x%x.\n", format);
231   return false;
232 }
233
234 /**
235  * @returns The Pixel::Format Dali enum corresponding to the KTX internal format
236  *          passed in, or Pixel::INVALID_PIXEL_FORMAT if the format is not valid.
237  **/
238 bool ConvertPixelFormat(const uint32_t ktxPixelFormat, Dali::Pixel::Format& format)
239 {
240   using namespace Dali::Pixel;
241   switch(ktxPixelFormat)
242   {
243     // GLES 2 extension compressed formats:
244     case KTX_ETC1_RGB8_OES:
245     {
246       format = COMPRESSED_RGB8_ETC1;
247       break;
248     }
249     case KTX_COMPRESSED_RGB_PVRTC_4BPPV1_IMG:
250     {
251       format = COMPRESSED_RGB_PVRTC_4BPPV1;
252       break;
253     }
254
255     // GLES 3 extension compressed formats:
256     case KTX_COMPRESSED_R11_EAC:
257     {
258       format = COMPRESSED_R11_EAC;
259       break;
260     }
261     case KTX_COMPRESSED_SIGNED_R11_EAC:
262     {
263       format = COMPRESSED_SIGNED_R11_EAC;
264       break;
265     }
266     case KTX_COMPRESSED_RG11_EAC:
267     {
268       format = COMPRESSED_RG11_EAC;
269       break;
270     }
271     case KTX_COMPRESSED_SIGNED_RG11_EAC:
272     {
273       format = COMPRESSED_SIGNED_RG11_EAC;
274       break;
275     }
276     case KTX_COMPRESSED_RGB8_ETC2:
277     {
278       format = COMPRESSED_RGB8_ETC2;
279       break;
280     }
281     case KTX_COMPRESSED_SRGB8_ETC2:
282     {
283       format = COMPRESSED_SRGB8_ETC2;
284       break;
285     }
286     case KTX_COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2:
287     {
288       format = COMPRESSED_RGB8_PUNCHTHROUGH_ALPHA1_ETC2;
289       break;
290     }
291     case KTX_COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2:
292     {
293       format = COMPRESSED_SRGB8_PUNCHTHROUGH_ALPHA1_ETC2;
294       break;
295     }
296     case KTX_COMPRESSED_RGBA8_ETC2_EAC:
297     {
298       format = COMPRESSED_RGBA8_ETC2_EAC;
299       break;
300     }
301     case KTX_COMPRESSED_SRGB8_ALPHA8_ETC2_EAC:
302     {
303       format = COMPRESSED_SRGB8_ALPHA8_ETC2_EAC;
304       break;
305     }
306
307     // GLES 3.1 extension compressed formats:
308     case KTX_COMPRESSED_RGBA_ASTC_4x4_KHR:
309     {
310       format = COMPRESSED_RGBA_ASTC_4x4_KHR;
311       break;
312     }
313     case KTX_COMPRESSED_RGBA_ASTC_5x4_KHR:
314     {
315       format = COMPRESSED_RGBA_ASTC_5x4_KHR;
316       break;
317     }
318     case KTX_COMPRESSED_RGBA_ASTC_5x5_KHR:
319     {
320       format = COMPRESSED_RGBA_ASTC_5x5_KHR;
321       break;
322     }
323     case KTX_COMPRESSED_RGBA_ASTC_6x5_KHR:
324     {
325       format = COMPRESSED_RGBA_ASTC_6x5_KHR;
326       break;
327     }
328     case KTX_COMPRESSED_RGBA_ASTC_6x6_KHR:
329     {
330       format = COMPRESSED_RGBA_ASTC_6x6_KHR;
331       break;
332     }
333     case KTX_COMPRESSED_RGBA_ASTC_8x5_KHR:
334     {
335       format = COMPRESSED_RGBA_ASTC_8x5_KHR;
336       break;
337     }
338     case KTX_COMPRESSED_RGBA_ASTC_8x6_KHR:
339     {
340       format = COMPRESSED_RGBA_ASTC_8x6_KHR;
341       break;
342     }
343     case KTX_COMPRESSED_RGBA_ASTC_8x8_KHR:
344     {
345       format = COMPRESSED_RGBA_ASTC_8x8_KHR;
346       break;
347     }
348     case KTX_COMPRESSED_RGBA_ASTC_10x5_KHR:
349     {
350       format = COMPRESSED_RGBA_ASTC_10x5_KHR;
351       break;
352     }
353     case KTX_COMPRESSED_RGBA_ASTC_10x6_KHR:
354     {
355       format = COMPRESSED_RGBA_ASTC_10x6_KHR;
356       break;
357     }
358     case KTX_COMPRESSED_RGBA_ASTC_10x8_KHR:
359     {
360       format = COMPRESSED_RGBA_ASTC_10x8_KHR;
361       break;
362     }
363     case KTX_COMPRESSED_RGBA_ASTC_10x10_KHR:
364     {
365       format = COMPRESSED_RGBA_ASTC_10x10_KHR;
366       break;
367     }
368     case KTX_COMPRESSED_RGBA_ASTC_12x10_KHR:
369     {
370       format = COMPRESSED_RGBA_ASTC_12x10_KHR;
371       break;
372     }
373     case KTX_COMPRESSED_RGBA_ASTC_12x12_KHR:
374     {
375       format = COMPRESSED_RGBA_ASTC_12x12_KHR;
376       break;
377     }
378     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR:
379     {
380       format = COMPRESSED_SRGB8_ALPHA8_ASTC_4x4_KHR;
381       break;
382     }
383     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR:
384     {
385       format = COMPRESSED_SRGB8_ALPHA8_ASTC_5x4_KHR;
386       break;
387     }
388     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR:
389     {
390       format = COMPRESSED_SRGB8_ALPHA8_ASTC_5x5_KHR;
391       break;
392     }
393     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR:
394     {
395       format = COMPRESSED_SRGB8_ALPHA8_ASTC_6x5_KHR;
396       break;
397     }
398     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR:
399     {
400       format = COMPRESSED_SRGB8_ALPHA8_ASTC_6x6_KHR;
401       break;
402     }
403     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR:
404     {
405       format = COMPRESSED_SRGB8_ALPHA8_ASTC_8x5_KHR;
406       break;
407     }
408     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR:
409     {
410       format = COMPRESSED_SRGB8_ALPHA8_ASTC_8x6_KHR;
411       break;
412     }
413     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR:
414     {
415       format = COMPRESSED_SRGB8_ALPHA8_ASTC_8x8_KHR;
416       break;
417     }
418     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR:
419     {
420       format = COMPRESSED_SRGB8_ALPHA8_ASTC_10x5_KHR;
421       break;
422     }
423     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR:
424     {
425       format = COMPRESSED_SRGB8_ALPHA8_ASTC_10x6_KHR;
426       break;
427     }
428     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR:
429     {
430       format = COMPRESSED_SRGB8_ALPHA8_ASTC_10x8_KHR;
431       break;
432     }
433     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR:
434     {
435       format = COMPRESSED_SRGB8_ALPHA8_ASTC_10x10_KHR;
436       break;
437     }
438     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR:
439     {
440       format = COMPRESSED_SRGB8_ALPHA8_ASTC_12x10_KHR;
441       break;
442     }
443     case KTX_COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR:
444     {
445       format = COMPRESSED_SRGB8_ALPHA8_ASTC_12x12_KHR;
446       break;
447     }
448
449     default:
450     {
451        return false;
452     }
453   }
454   return true;
455 }
456
457 bool LoadKtxHeader(FILE * const fp, unsigned int &width, unsigned int &height, KtxFileHeader &fileHeader)
458 {
459   // Pull the bytes of the file header in as a block:
460   if ( !ReadHeader(fp, fileHeader) )
461   {
462     return false;
463   }
464   width = fileHeader.pixelWidth;
465   height = fileHeader.pixelHeight;
466
467   if ( width > MAX_TEXTURE_DIMENSION || height > MAX_TEXTURE_DIMENSION )
468   {
469     return false;
470   }
471
472   // Validate file header contents meet our minimal subset:
473   const bool signatureGood                            = CheckFileIdentifier<sizeof(fileHeader.identifier)>(fileHeader.identifier);
474   const bool fileEndiannessMatchesSystemEndianness    = fileHeader.endianness == 0x04030201; // Magic number from KTX spec.
475   const bool glTypeIsCompressed                       = fileHeader.glType == 0;
476   const bool glTypeSizeCompatibleWithCompressedTex    = fileHeader.glTypeSize == 1;
477   const bool glFormatCompatibleWithCompressedTex      = fileHeader.glFormat == 0;
478   const bool glInternalFormatIsSupportedCompressedTex = ValidInternalFormat(fileHeader.glInternalFormat);
479   // Ignore glBaseInternalFormat
480   const bool textureIsNot3D                           = fileHeader.pixelDepth == 0 || fileHeader.pixelDepth == 1;
481   const bool textureIsNotAnArray                      = fileHeader.numberOfArrayElements == 0 || fileHeader.numberOfArrayElements == 1;
482   const bool textureIsNotACubemap                     = fileHeader.numberOfFaces == 0 || fileHeader.numberOfFaces == 1;
483   const bool textureHasNoMipmapLevels                 = fileHeader.numberOfMipmapLevels == 0 || fileHeader.numberOfMipmapLevels == 1;
484   const bool keyValueDataNotTooLarge                  = fileHeader.bytesOfKeyValueData <= MAX_BYTES_OF_KEYVALUE_DATA;
485
486   const bool headerIsValid = signatureGood && fileEndiannessMatchesSystemEndianness && glTypeIsCompressed &&
487                            glTypeSizeCompatibleWithCompressedTex && glFormatCompatibleWithCompressedTex &&
488                            textureIsNot3D && textureIsNotAnArray && textureIsNotACubemap && textureHasNoMipmapLevels &&
489                            glInternalFormatIsSupportedCompressedTex & keyValueDataNotTooLarge;
490   if( !headerIsValid )
491   {
492      DALI_LOG_ERROR( "KTX file invalid or using unsupported features. Header tests: sig: %d, endian: %d, gl_type: %d, gl_type_size: %d, gl_format: %d, internal_format: %d, depth: %d, array: %d, faces: %d, mipmap: %d, vey-vals: %d.\n", 0+signatureGood, 0+fileEndiannessMatchesSystemEndianness, 0+glTypeIsCompressed, 0+glTypeSizeCompatibleWithCompressedTex, 0+glFormatCompatibleWithCompressedTex, 0+glInternalFormatIsSupportedCompressedTex, 0+textureIsNot3D, 0+textureIsNotAnArray, 0+textureIsNotACubemap, 0+textureHasNoMipmapLevels, 0+keyValueDataNotTooLarge);
493   }
494
495   // Warn if there is space wasted in the file:
496   if( fileHeader.bytesOfKeyValueData > 0U )
497   {
498     DALI_LOG_WARNING("Loading of KTX file with key/value header data requested. This should be stripped in application asset/resource build.\n");
499   }
500
501   return headerIsValid;
502 }
503
504
505 } // unnamed namespace
506
507 // File loading API entry-point:
508 bool LoadKtxHeader( const ImageLoader::Input& input, unsigned int& width, unsigned int& height )
509 {
510   KtxFileHeader fileHeader;
511   FILE* const fp = input.file;
512
513   bool ret = LoadKtxHeader(fp, width, height, fileHeader);
514   return ret;
515 }
516
517 // File loading API entry-point:
518 bool LoadBitmapFromKtx( const ResourceLoadingClient& client, const ImageLoader::Input& input, Integration::Bitmap& bitmap )
519 {
520   DALI_COMPILE_TIME_ASSERT( sizeof(Byte) == 1);
521   DALI_COMPILE_TIME_ASSERT( sizeof(uint32_t) == 4);
522
523   FILE* const fp = input.file;
524   if( fp == NULL )
525   {
526     DALI_LOG_ERROR( "Null file handle passed to KTX compressed bitmap file loader.\n" );
527     return false;
528   }
529   KtxFileHeader fileHeader;
530
531   // Load the header info
532   unsigned int width, height;
533
534   if (!LoadKtxHeader(fp, width, height, fileHeader))
535   {
536       return false;
537   }
538
539   // Skip the key-values:
540   const long int imageSizeOffset = sizeof(KtxFileHeader) + fileHeader.bytesOfKeyValueData;
541   if(fseek(fp, imageSizeOffset, SEEK_SET))
542   {
543     DALI_LOG_ERROR( "Seek past key/vals in KTX compressed bitmap file failed.\n" );
544     return false;
545   }
546
547   // Load the size of the image data:
548   uint32_t imageByteCount = 0;
549   if (fread((void*)&imageByteCount, 1, 4, fp) != 4)
550   {
551     DALI_LOG_ERROR( "Read of image size failed.\n" );
552     return false;
553   }
554   // Sanity-check the image size:
555   if( imageByteCount > MAX_IMAGE_DATA_SIZE ||
556       // A compressed texture should certainly be less than 2 bytes per texel:
557       imageByteCount > width * height * 2)
558   {
559     DALI_LOG_ERROR( "KTX file with too-large image-data field.\n" );
560     return false;
561   }
562
563   Pixel::Format pixelFormat;
564   const bool pixelFormatKnown = ConvertPixelFormat(fileHeader.glInternalFormat, pixelFormat);
565   if(!pixelFormatKnown)
566   {
567     DALI_LOG_ERROR( "No internal pixel format supported for KTX file pixel format.\n" );
568     return false;
569   }
570
571   // Load up the image bytes:
572   PixelBuffer * const pixels = bitmap.GetCompressedProfile()->ReserveBufferOfSize( pixelFormat, width, height, (size_t) imageByteCount );
573   if(!pixels)
574   {
575     DALI_LOG_ERROR( "Unable to reserve a pixel buffer to load the requested bitmap into.\n" );
576     return false;
577   }
578   const size_t bytesRead = fread(pixels, 1, imageByteCount, fp);
579   if(bytesRead != imageByteCount)
580   {
581     DALI_LOG_ERROR( "Read of image pixel data failed.\n" );
582     return false;
583   }
584
585   return true;
586 }
587
588 } // namespace TizenPlatform
589
590 } // namespace Dali