BasisUniversal: Use RGTC compression when available
This commit is contained in:
parent
97ef3c8372
commit
337d80d8f5
|
@ -84,14 +84,12 @@ Vector<uint8_t> basis_universal_packer(const Ref<Image> &p_image, Image::UsedCha
|
||||||
decompress_format = BASIS_DECOMPRESS_RGBA;
|
decompress_format = BASIS_DECOMPRESS_RGBA;
|
||||||
} break;
|
} break;
|
||||||
case Image::USED_CHANNELS_R: {
|
case Image::USED_CHANNELS_R: {
|
||||||
decompress_format = BASIS_DECOMPRESS_RGB;
|
decompress_format = BASIS_DECOMPRESS_R;
|
||||||
} break;
|
} break;
|
||||||
case Image::USED_CHANNELS_RG: {
|
case Image::USED_CHANNELS_RG: {
|
||||||
// Currently RG textures are compressed as DXT5/ETC2_RGBA8 with a RA -> RG swizzle,
|
|
||||||
// as BasisUniversal didn't use to support ETC2_RG11 transcoding.
|
|
||||||
params.m_force_alpha = true;
|
params.m_force_alpha = true;
|
||||||
image->convert_rg_to_ra_rgba8();
|
image->convert_rg_to_ra_rgba8();
|
||||||
decompress_format = BASIS_DECOMPRESS_RG_AS_RA;
|
decompress_format = BASIS_DECOMPRESS_RG;
|
||||||
} break;
|
} break;
|
||||||
case Image::USED_CHANNELS_RGB: {
|
case Image::USED_CHANNELS_RGB: {
|
||||||
decompress_format = BASIS_DECOMPRESS_RGB;
|
decompress_format = BASIS_DECOMPRESS_RGB;
|
||||||
|
@ -219,15 +217,68 @@ Ref<Image> basis_universal_unpacker_ptr(const uint8_t *p_data, int p_size) {
|
||||||
// Get supported compression formats.
|
// Get supported compression formats.
|
||||||
bool bptc_supported = RS::get_singleton()->has_os_feature("bptc");
|
bool bptc_supported = RS::get_singleton()->has_os_feature("bptc");
|
||||||
bool astc_supported = RS::get_singleton()->has_os_feature("astc");
|
bool astc_supported = RS::get_singleton()->has_os_feature("astc");
|
||||||
|
bool rgtc_supported = RS::get_singleton()->has_os_feature("rgtc");
|
||||||
bool s3tc_supported = RS::get_singleton()->has_os_feature("s3tc");
|
bool s3tc_supported = RS::get_singleton()->has_os_feature("s3tc");
|
||||||
bool etc2_supported = RS::get_singleton()->has_os_feature("etc2");
|
bool etc2_supported = RS::get_singleton()->has_os_feature("etc2");
|
||||||
|
|
||||||
bool needs_ra_rg_swap = false;
|
bool needs_ra_rg_swap = false;
|
||||||
|
bool needs_rg_trim = false;
|
||||||
|
|
||||||
switch (*(uint32_t *)(src_ptr)) {
|
BasisDecompressFormat decompress_format = (BasisDecompressFormat)(*(uint32_t *)(src_ptr));
|
||||||
|
|
||||||
|
switch (decompress_format) {
|
||||||
|
case BASIS_DECOMPRESS_R: {
|
||||||
|
if (rgtc_supported) {
|
||||||
|
basisu_format = basist::transcoder_texture_format::cTFBC4_R;
|
||||||
|
image_format = Image::FORMAT_RGTC_R;
|
||||||
|
} else if (s3tc_supported) {
|
||||||
|
basisu_format = basist::transcoder_texture_format::cTFBC1;
|
||||||
|
image_format = Image::FORMAT_DXT1;
|
||||||
|
} else if (etc2_supported) {
|
||||||
|
basisu_format = basist::transcoder_texture_format::cTFETC2_EAC_R11;
|
||||||
|
image_format = Image::FORMAT_ETC2_R11;
|
||||||
|
} else {
|
||||||
|
// No supported VRAM compression formats, decompress.
|
||||||
|
basisu_format = basist::transcoder_texture_format::cTFRGBA32;
|
||||||
|
image_format = Image::FORMAT_RGBA8;
|
||||||
|
needs_rg_trim = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
} break;
|
||||||
case BASIS_DECOMPRESS_RG: {
|
case BASIS_DECOMPRESS_RG: {
|
||||||
// RGTC transcoding is currently performed with RG_AS_RA, fail.
|
if (rgtc_supported) {
|
||||||
ERR_FAIL_V(image);
|
basisu_format = basist::transcoder_texture_format::cTFBC5_RG;
|
||||||
|
image_format = Image::FORMAT_RGTC_RG;
|
||||||
|
} else if (s3tc_supported) {
|
||||||
|
basisu_format = basist::transcoder_texture_format::cTFBC3;
|
||||||
|
image_format = Image::FORMAT_DXT5_RA_AS_RG;
|
||||||
|
} else if (etc2_supported) {
|
||||||
|
basisu_format = basist::transcoder_texture_format::cTFETC2_EAC_RG11;
|
||||||
|
image_format = Image::FORMAT_ETC2_RG11;
|
||||||
|
} else {
|
||||||
|
// No supported VRAM compression formats, decompress.
|
||||||
|
basisu_format = basist::transcoder_texture_format::cTFRGBA32;
|
||||||
|
image_format = Image::FORMAT_RGBA8;
|
||||||
|
needs_ra_rg_swap = true;
|
||||||
|
needs_rg_trim = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
} break;
|
||||||
|
case BASIS_DECOMPRESS_RG_AS_RA: {
|
||||||
|
if (s3tc_supported) {
|
||||||
|
basisu_format = basist::transcoder_texture_format::cTFBC3;
|
||||||
|
image_format = Image::FORMAT_DXT5_RA_AS_RG;
|
||||||
|
} else if (etc2_supported) {
|
||||||
|
basisu_format = basist::transcoder_texture_format::cTFETC2;
|
||||||
|
image_format = Image::FORMAT_ETC2_RA_AS_RG;
|
||||||
|
} else {
|
||||||
|
// No supported VRAM compression formats, decompress.
|
||||||
|
basisu_format = basist::transcoder_texture_format::cTFRGBA32;
|
||||||
|
image_format = Image::FORMAT_RGBA8;
|
||||||
|
needs_ra_rg_swap = true;
|
||||||
|
needs_rg_trim = true;
|
||||||
|
}
|
||||||
|
|
||||||
} break;
|
} break;
|
||||||
case BASIS_DECOMPRESS_RGB: {
|
case BASIS_DECOMPRESS_RGB: {
|
||||||
if (bptc_supported) {
|
if (bptc_supported) {
|
||||||
|
@ -267,20 +318,7 @@ Ref<Image> basis_universal_unpacker_ptr(const uint8_t *p_data, int p_size) {
|
||||||
basisu_format = basist::transcoder_texture_format::cTFRGBA32;
|
basisu_format = basist::transcoder_texture_format::cTFRGBA32;
|
||||||
image_format = Image::FORMAT_RGBA8;
|
image_format = Image::FORMAT_RGBA8;
|
||||||
}
|
}
|
||||||
} break;
|
|
||||||
case BASIS_DECOMPRESS_RG_AS_RA: {
|
|
||||||
if (s3tc_supported) {
|
|
||||||
basisu_format = basist::transcoder_texture_format::cTFBC3;
|
|
||||||
image_format = Image::FORMAT_DXT5_RA_AS_RG;
|
|
||||||
} else if (etc2_supported) {
|
|
||||||
basisu_format = basist::transcoder_texture_format::cTFETC2;
|
|
||||||
image_format = Image::FORMAT_ETC2_RA_AS_RG;
|
|
||||||
} else {
|
|
||||||
// No supported VRAM compression formats, decompress.
|
|
||||||
basisu_format = basist::transcoder_texture_format::cTFRGBA32;
|
|
||||||
image_format = Image::FORMAT_RGBA8;
|
|
||||||
needs_ra_rg_swap = true;
|
|
||||||
}
|
|
||||||
} break;
|
} break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -324,6 +362,15 @@ Ref<Image> basis_universal_unpacker_ptr(const uint8_t *p_data, int p_size) {
|
||||||
image->convert_ra_rgba8_to_rg();
|
image->convert_ra_rgba8_to_rg();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (needs_rg_trim) {
|
||||||
|
// Remove unnecessary color channels from uncompressed textures.
|
||||||
|
if (decompress_format == BASIS_DECOMPRESS_R) {
|
||||||
|
image->convert(Image::FORMAT_R8);
|
||||||
|
} else if (decompress_format == BASIS_DECOMPRESS_RG || decompress_format == BASIS_DECOMPRESS_RG_AS_RA) {
|
||||||
|
image->convert(Image::FORMAT_RG8);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return image;
|
return image;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,7 @@ enum BasisDecompressFormat {
|
||||||
BASIS_DECOMPRESS_RGB,
|
BASIS_DECOMPRESS_RGB,
|
||||||
BASIS_DECOMPRESS_RGBA,
|
BASIS_DECOMPRESS_RGBA,
|
||||||
BASIS_DECOMPRESS_RG_AS_RA,
|
BASIS_DECOMPRESS_RG_AS_RA,
|
||||||
|
BASIS_DECOMPRESS_R,
|
||||||
};
|
};
|
||||||
|
|
||||||
void basis_universal_init();
|
void basis_universal_init();
|
||||||
|
|
Loading…
Reference in New Issue