Explorar o código

Merge pull request #11730 from gabrielformiga/fix-small-png-texture-import

Change to Image::shrink_x2 function preventing it set a 0 width/height for mipmapped textures
Andreas Haas %!s(int64=8) %!d(string=hai) anos
pai
achega
2fbffb7cde
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      core/image.cpp

+ 2 - 2
core/image.cpp

@@ -1013,8 +1013,8 @@ void Image::shrink_x2() {
 			copymem(w.ptr(), &r[ofs], new_size);
 		}
 
-		width /= 2;
-		height /= 2;
+		width = MAX(width / 2, 1);
+		height = MAX(height / 2, 1);
 		data = new_img;
 
 	} else {