PVRTC

PVRTC and PVRTC2 are a family of lossy, fixed-rate texture compression formats used in PowerVR's MBX (PVRTC only), SGX and Rogue technologies. The PVRTC algorithm is documented in Simon Fenney's paper "Texture Compression using Low-Frequency Signal Modulation" that was presented at Graphics Hardware 2003.

These differ from block-based texture formats such as S3TC and Ericsson Texture Compression (ETC) in that the compressed image is represented by two lower resolution images which are bilinearly upscaled and then blended according to low precision, per-pixel weights. They also differ in that they support ARGB data in both 4-bpp and 2-bpp modes.

PVRTC is the compressed texture format used in all generations of the iPhone, iPod Touch, and iPad. It is also supported[1] in certain Android devices, that use PowerVR GPUs.

Data structure

In both PVRTC and PVRTC2, texture data is stored in blocks (but note that the decoding of any 2x2 set of texels requires access to 4 of these blocks.) A data block always occupies 64 bits (8 bytes) of storage/memory space and thus, in 4 bit mode (4bpp), there will be one block for each 4×4 pixels. In 2 bit mode (2-bpp), there will be one block for every 8×4 pixels.

For example, a 1024×1024 4-bpp PVRTC texture would have 65536 blocks and take 524288 bytes of storage/memory space. In some hardware implementations, the blocks are arranged in Morton order.

With PVRTC there are six different variables[2] stored in each block: Modulation data (32 bits), punch-through alpha flag (1 bit), color A (15 bits), color A opaque flag (1 bit), color B (14 bits) and color B opaque flag (1 bit).

With PVRTC2 there are six different variables[3] stored to one block: Modulation data (32 bits), modulation flag (1 bit), color B (14 bits), hard transition flag (1 bit), color A (15 bits) and opacity flag (1 bit).

Although in PVRTC the opacity flags can be set independently for the A & B colours, in PVRTC2, Color A and Color B must both be in same format (i.e. either both RGB or both RGBA).

Limitations

There isn't any max size limit via format itself , but GPU's max texture size limit does apply to PVRTC textures. For this reason, on a mobile device, a single PVRTC texture may be capped to 4096x4096 resolution.

Since most PVRTC and PVRTC2 texture creation tools are targeting iPhones, iPads and iPod touches, additional limitations[4] set by Apple apply:

Naming confusion

Some texture tools (e.g. TexturePacker) use the abbreviation PVRTC2 for PVRTC 2-bpp.[5] This naturally causes confusion since people cannot know for sure if the term PVRTC2 means PVRTC2 texture or PVRTC 2-bpp texture.

References


This article is issued from Wikipedia - version of the 10/8/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.