Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

At this moment I use this scenario to load OpenGL texture from PNG:

  • load PNG via UIImage
  • get pixels data via bitmap context
  • repack pixels to new format (currently RGBA8 -> RGBA4, RGB8 -> RGB565, using ARM NEON instructions)
  • create OpenGL texture with data

(this approach is commonly used in Cocos2d engine)

It takes much time and seems to do extra work that may be done once per build. So I want to save repacked pixels data back into file and load it directly to OpenGL on second time.

I would know the practical advantages. Does anyone tried it? Is it worth to compress data via zip (as I know, current iDevices have bottleneck in file access)? Would be very thankful for real experience sharing.

share|improve this question

2 Answers

Even better, if these are pre-existing images, compress them using PowerVR Texture Compression (PVRTC). PVRTC textures can be loaded directly, and are stored on the GPU in their compressed form, so they can be much smaller than the various raw pixel formats.

I provide an example of how to compress and use PVRTC textures in this sample code (the texture coordinates are a little messed up there, because I haven't corrected them yet). In that example, I just reuse Apple's PVRTexture sample class for handling this type of texture. The PVRTC textures are compressed via a script that's part of one of the build phases, so this can be automated for your various source images.

share|improve this answer
Thanks for answer. But I can't use PVR format (it brings some visible artifacts on transparent pixels, and images must be of POT size) – brigadir Apr 25 '12 at 5:59
@brigadir: WRT the artefacts, what compression tool are you using, are you using premultiplied (i.e (1, 1-SrcAlpha) blend) or non-premultiplied (SrcAlpha, 1-SrcAlpha), and what RGBs are actually in the transparent areas? The last part of the question is because I've seen all sorts of bizarre colours stuffed into otherwise invisible areas of example textures that the compressor will try to represent. – Simon F Apr 25 '12 at 8:42
up vote 0 down vote accepted

So, I have made some successful experiment:

I compress texture data by zlib (max compression ratio) and save it to file (via NSData methods). The size of file is much smaller then PNG in some cases.

As for loading time, I can't say exact timestamps because in my project there are 2 parallel threads - one is loading textures on background while another is still rendering scene. It is approximately twice faster - IMHO the main reason is that we copy image data directly to OpengGL without repacking, and input data amount smaller).

PS: Build optimization level plays very high role in loading time: about 4 seconds in debug configuration vs. 1 second in release.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.