Android OpenGL Texture Compression

AndroidOpengl EsTextures

Android Problem Overview


I need some help finding information (or an example) of how to use texture compression for Android. I have a lot of PNG's right now and I need to reduce the amount of memory they take up. I was looking at PVR compression but I can't figure out how to use this within OpenGL.

Could some point me in the right direction or offer some examples as I cannot find anything.

Android Solutions


Solution 1 - Android

There are mainly four texture compression types supported on Android:

  • ETC1 (Ericsson texture compression). This format is supported by all Android phones. But, it doesn't support an alpha channel, so can only be used for opaque textures.
  • PVRTC (PowerVR texture compression). Supported by devices with PowerVR GPUs (Nexus S, Kindle fire, etc.).
  • ATITC (ATI texture compression). Used in devices with Adreno GPU from Qualcomm (Nexus One, etc.).
  • S3TC (S3 texture compression). This texture compression is used in the NVIDIA chipset integrated devices (Motorola Xoom, etc.)

More detailed information here and here.

In short, if your textures don't have alpha, you can use ETC1. If they do have alpha, and you want to support all devices, you must have your textures compressed in the other three types and load them according to the device.

How to use:

  1. Compress your png files (You can use a tool like ETC-Pack, PVRTexTool, ATI Compressonator, Nvidia Texure Tools according to the type of texture) and add to your project assets.

  2. Determine which extensions are available in the device, if you're not using ETC1:

     public void onSurfaceCreated(GL10 gl, EGLConfig config) {
     
          String s = gl.glGetString(GL10.GL_EXTENSIONS);
    
          if (s.contains("GL_IMG_texture_compression_pvrtc")){
     	      //Use PVR compressed textures			
          }else if (s.contains("GL_AMD_compressed_ATC_texture") ||
                   s.contains("GL_ATI_texture_compression_atitc")){
     	      //Load ATI Textures 			
          }else if (s.contains("GL_OES_texture_compression_S3TC") ||
                     s.contains("GL_EXT_texture_compression_s3tc")){
              //Use DTX Textures
          }else{
     	     //Handle no texture compression founded.   			
          }
    
     }       	
    
  3. Load compressed texture as raw data.

  4. Use glCompressedTexImage2D instead of glTexImage2D:

     public void onDrawFrame(GL10 gl) {
    
        ....
    
        gl.glCompressedTexImage2D(GL10.GL_TEXTURE_2D, level, internalformat, width, 
                                  height, border, imageSize, data);
    
     }
    

Solution 2 - Android

This is an ol thread, so I thought I'd update it with the information available on http://devtools.ericsson.com/etc ETC2 is mandatory in the Khronos standards OpenGL ES 3.0 and OpenGL 4.3.

Solution 3 - Android

You should not use just PVR compression on Android, since that will not work with all models. To get around that you should either only use ETC1 (mandated on all GLES 2.0 devices) or have separate texture packs for separate GPU modes. The android dev guide has a helper class to load the compression format.

You can use etcpack to do compression.

Note that you will not get an alpha channel with ETC1 - you can do some fancy fragment shading tricks to get around that by having the alpha channel as a separate texture.

Solution 4 - Android

Just wanted to point out etc1 isn't supported by all android devices, contrary to what gergonzalez said

> Caution: The ETC1 format is supported by most Android devices, but it not guaranteed to be available. To check if the ETC1 format is supported on a device, call the ETC1Util.isETC1Supported() method.

https://developer.android.com/guide/topics/graphics/opengl.html#textures

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionChrisView Question on Stackoverflow
Solution 1 - AndroidgergonzalezView Answer on Stackoverflow
Solution 2 - Androidremi arnaudView Answer on Stackoverflow
Solution 3 - AndroidArne Bergene FossaaView Answer on Stackoverflow
Solution 4 - Androided-View Answer on Stackoverflow