Răsfoiți Sursa

Merge pull request #44680 from madmiraal/fix-cvtt-options

Ensure flags are applied to CVTT options
Rémi Verschelde 4 ani în urmă
părinte
comite
af2232521c
1 a modificat fișierele cu 1 adăugiri și 0 ștergeri
  1. 1 0
      modules/cvtt/image_compress_cvtt.cpp

+ 1 - 0
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;