diff options
author | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-23 09:34:26 +0000 |
---|---|---|
committer | Marcel Admiraal <madmiraal@users.noreply.github.com> | 2020-12-29 08:04:19 +0000 |
commit | b4a190e0bc4885e33282ba68e4970f00601fa3c9 (patch) | |
tree | b809dd7b5c8c344381b11c82192eeb2d854311d4 /modules/cvtt | |
parent | 6cebb8c11773b203039c811c2ee50ba25c99e5e1 (diff) |
Consistently use normal_map
Diffstat (limited to 'modules/cvtt')
-rw-r--r-- | modules/cvtt/image_compress_cvtt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cvtt/image_compress_cvtt.cpp b/modules/cvtt/image_compress_cvtt.cpp index 787b6dbf80..e34455bca2 100644 --- a/modules/cvtt/image_compress_cvtt.cpp +++ b/modules/cvtt/image_compress_cvtt.cpp @@ -168,7 +168,7 @@ void image_compress_cvtt(Image *p_image, float p_lossy_quality, Image::UsedChann flags |= cvtt::Flags::BC7_RespectPunchThrough; - if (p_channels == Image::USED_CHANNELS_RG) { //guessing this is a normalmap + if (p_channels == Image::USED_CHANNELS_RG) { //guessing this is a normal map flags |= cvtt::Flags::Uniform; } options.flags = flags; |