diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-25 11:27:22 +0000 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-25 11:28:29 +0000 |
commit | 709aa8ae2caa3789ad88b91722ecce5a2115e6e3 (patch) | |
tree | f0cd9e33dc29914dd191b690b045dde1345ab745 | |
parent | 545c89461464ee14b2b806dd2dd2c0eef110e181 (diff) |
Ensure flags are applied to CVTT options
-rw-r--r-- | modules/cvtt/image_compress_cvtt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/cvtt/image_compress_cvtt.cpp b/modules/cvtt/image_compress_cvtt.cpp index 5d97164dbf..787b6dbf80 100644 --- a/modules/cvtt/image_compress_cvtt.cpp +++ b/modules/cvtt/image_compress_cvtt.cpp @@ -171,6 +171,7 @@ void image_compress_cvtt(Image *p_image, float p_lossy_quality, Image::UsedChann if (p_channels == Image::USED_CHANNELS_RG) { //guessing this is a normalmap flags |= cvtt::Flags::Uniform; } + options.flags = flags; Image::Format target_format = Image::FORMAT_BPTC_RGBA; |