diff options
author | BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> | 2024-08-20 15:14:48 +0200 |
---|---|---|
committer | BlueCube3310 <53150244+BlueCube3310@users.noreply.github.com> | 2024-09-11 23:48:29 +0200 |
commit | 606eedb0c9093789018f64381e79e7d93dd8752d (patch) | |
tree | 846c69b3e1a1aa48a05afa4c5c0c1d72c04b5d4c /core/io/image.cpp | |
parent | 2c136e6170a40f58f2dfb89d32eadfca7156ef37 (diff) | |
download | redot-engine-606eedb0c9093789018f64381e79e7d93dd8752d.tar.gz |
Betsy: Add caching and BC1 compression support
Diffstat (limited to 'core/io/image.cpp')
-rw-r--r-- | core/io/image.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/core/io/image.cpp b/core/io/image.cpp index fcbe483e38..bc018bd45c 100644 --- a/core/io/image.cpp +++ b/core/io/image.cpp @@ -2751,6 +2751,19 @@ Error Image::compress_from_channels(CompressMode p_mode, UsedChannels p_channels } break; + case COMPRESS_S3TC: { + // BC3 is unsupported currently. + if ((p_channels == USED_CHANNELS_RGB || p_channels == USED_CHANNELS_L) && _image_compress_bc_rd_func) { + Error result = _image_compress_bc_rd_func(this, p_channels); + + // If the image was compressed successfully, we return here. If not, we fall back to the default compression scheme. + if (result == OK) { + return OK; + } + } + + } break; + default: { } } @@ -3138,6 +3151,7 @@ void (*Image::_image_compress_etc1_func)(Image *) = nullptr; void (*Image::_image_compress_etc2_func)(Image *, Image::UsedChannels) = nullptr; void (*Image::_image_compress_astc_func)(Image *, Image::ASTCFormat) = nullptr; Error (*Image::_image_compress_bptc_rd_func)(Image *, Image::UsedChannels) = nullptr; +Error (*Image::_image_compress_bc_rd_func)(Image *, Image::UsedChannels) = nullptr; void (*Image::_image_decompress_bc)(Image *) = nullptr; void (*Image::_image_decompress_bptc)(Image *) = nullptr; void (*Image::_image_decompress_etc1)(Image *) = nullptr; |