Explorar o código

Use DXT1 when compressing PNGs with RGB format

This results in much smaller file sizes with the same quality
clayjohn %!s(int64=2) %!d(string=hai) anos
pai
achega
f84c6df8d1
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      modules/etcpak/image_compress_etcpak.cpp

+ 1 - 1
modules/etcpak/image_compress_etcpak.cpp

@@ -66,7 +66,7 @@ EtcpakType _determine_dxt_type(Image::UsedChannels p_channels) {
 		case Image::USED_CHANNELS_RG:
 			return EtcpakType::ETCPAK_TYPE_DXT5_RA_AS_RG;
 		case Image::USED_CHANNELS_RGB:
-			return EtcpakType::ETCPAK_TYPE_DXT5;
+			return EtcpakType::ETCPAK_TYPE_DXT1;
 		case Image::USED_CHANNELS_RGBA:
 			return EtcpakType::ETCPAK_TYPE_DXT5;
 		default: