summaryrefslogtreecommitdiffstats
path: root/modules/cvtt/image_compress_cvtt.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <remi@verschelde.fr>2020-12-29 10:39:56 +0100
committerGitHub <noreply@github.com>2020-12-29 10:39:56 +0100
commit2086acfacc6da8c4e3bfedd887025686c38b90bd (patch)
treee21c78239bf82d8a1d4749c194a36b2cd2533b9a /modules/cvtt/image_compress_cvtt.cpp
parent0494c56c862620c33c2b1483b584118110e6b1f1 (diff)
parentb4a190e0bc4885e33282ba68e4970f00601fa3c9 (diff)
downloadredot-engine-2086acfacc6da8c4e3bfedd887025686c38b90bd.tar.gz
Merge pull request #44614 from madmiraal/rename-normalmap-normal_map
Consistently use normal_map
Diffstat (limited to 'modules/cvtt/image_compress_cvtt.cpp')
-rw-r--r--modules/cvtt/image_compress_cvtt.cpp2
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;