You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-09 12:50:35 +00:00
-Fix freezes caused by etccomp2, closes #9183
-Normalmaps are now detected and imported as RGTC, both in S3TC and ETC2, this improves their quality.
This commit is contained in:
@@ -80,7 +80,7 @@ void image_decompress_squish(Image *p_image) {
|
||||
p_image->create(p_image->get_width(), p_image->get_height(), p_image->has_mipmaps(), target_format, data);
|
||||
}
|
||||
|
||||
void image_compress_squish(Image *p_image, bool p_srgb) {
|
||||
void image_compress_squish(Image *p_image, Image::CompressSource p_source) {
|
||||
|
||||
if (p_image->get_format() >= Image::FORMAT_DXT1)
|
||||
return; //do not compress, already compressed
|
||||
@@ -97,11 +97,16 @@ void image_compress_squish(Image *p_image, bool p_srgb) {
|
||||
|
||||
p_image->convert(Image::FORMAT_RGBA8); //still uses RGBA to convert
|
||||
|
||||
if (p_srgb && (dc == Image::DETECTED_R || dc == Image::DETECTED_RG)) {
|
||||
if (p_source == Image::COMPRESS_SOURCE_SRGB && (dc == Image::DETECTED_R || dc == Image::DETECTED_RG)) {
|
||||
//R and RG do not support SRGB
|
||||
dc = Image::DETECTED_RGB;
|
||||
}
|
||||
|
||||
if (p_source == Image::COMPRESS_SOURCE_NORMAL) {
|
||||
//R and RG do not support SRGB
|
||||
dc = Image::DETECTED_RG;
|
||||
}
|
||||
|
||||
switch (dc) {
|
||||
case Image::DETECTED_L: {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user