core.texture.texel_format

Client

Enumeration of supported pixel formats for texture conversion


Values

Formats are ordered highest to lowest quality — or equivalently, lowest to highest VRAM savings.

ConstantDescription
core.texture.texel_format.RGBA832-bit full color with alpha — standard default
core.texture.texel_format.RGB824-bit full color, no alpha — 25% less VRAM than RGBA8
core.texture.texel_format.RGBA444416-bit color with alpha — half the VRAM of RGBA8, lower quality
core.texture.texel_format.RGB56516-bit color, no alpha — best VRAM savings without alpha
core.texture.texel_format.LA88-bit grayscale with alpha
core.texture.texel_format.L88-bit grayscale, no alpha — lightest option

On this page