diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-01-13 15:58:49 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2020-01-13 15:58:49 +0100 |
commit | c7b701dfd2fc4fe85f5b0f4e94a4faabda8dd375 (patch) | |
tree | 54f93e5cb08433963096820a3130addec969bee2 /modules/squish/image_compress_squish.cpp | |
parent | 087ffc8b5aafafba8fbb17d0689c0ceb88baa27a (diff) | |
download | redot-engine-c7b701dfd2fc4fe85f5b0f4e94a4faabda8dd375.tar.gz |
Image: Include S3TC compression via Squish in non-tools build
We already build Squish in templates build for S3TC decompression,
so we can as well expose the compression feature.
Fixes #25640.
Diffstat (limited to 'modules/squish/image_compress_squish.cpp')
-rw-r--r-- | modules/squish/image_compress_squish.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/modules/squish/image_compress_squish.cpp b/modules/squish/image_compress_squish.cpp index ef4ea93e57..58b8115dfc 100644 --- a/modules/squish/image_compress_squish.cpp +++ b/modules/squish/image_compress_squish.cpp @@ -73,7 +73,6 @@ void image_decompress_squish(Image *p_image) { p_image->create(p_image->get_width(), p_image->get_height(), p_image->has_mipmaps(), target_format, data); } -#ifdef TOOLS_ENABLED void image_compress_squish(Image *p_image, float p_lossy_quality, Image::CompressSource p_source) { if (p_image->get_format() >= Image::FORMAT_DXT1) @@ -203,4 +202,3 @@ void image_compress_squish(Image *p_image, float p_lossy_quality, Image::Compres p_image->create(p_image->get_width(), p_image->get_height(), p_image->has_mipmaps(), target_format, data); } } -#endif |