summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorclayjohn <claynjohn@gmail.com>2020-01-02 21:37:48 -0800
committerclayjohn <claynjohn@gmail.com>2020-01-02 21:37:48 -0800
commit7a9fc69a16d2cf29e0f5b4388869c29c4c5e8dd3 (patch)
tree109b580d71590af9b7492b235f88056a4659b5cb /modules
parent71d372a8ab1ee972326f8bd333f510330b7b7204 (diff)
Fallback to RGBA4444 for textures with alpha set to ETC compression
Diffstat (limited to 'modules')
-rw-r--r--modules/etc/image_etc.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/etc/image_etc.cpp b/modules/etc/image_etc.cpp
index 7cd5e2eb12..f0b95c893d 100644
--- a/modules/etc/image_etc.cpp
+++ b/modules/etc/image_etc.cpp
@@ -139,6 +139,13 @@ static void _compress_etc(Image *p_img, float p_lossy_quality, bool force_etc1_f
return;
}
+ if (img_format >= Image::FORMAT_RGBA8 && force_etc1_format) {
+ // If VRAM compression is using ETC, but image has alpha, convert to RGBA4444
+ // This saves space while maintaining the alpha channel
+ p_img->convert(Image::FORMAT_RGBA4444);
+ return;
+ }
+
uint32_t imgw = p_img->get_width(), imgh = p_img->get_height();
Image::Format etc_format = force_etc1_format ? Image::FORMAT_ETC : _get_etc2_mode(detected_channels);