Image: Fix decompressing ETC2
Thanks to @Rriik for finding the bug and its cause.
Fixes #25595.
(cherry picked from commit 1772d6fa23
)
This commit is contained in:
parent
0f2e3976d0
commit
d127f92bd5
|
@ -1505,7 +1505,7 @@ Error Image::decompress() {
|
|||
_image_decompress_pvrtc(this);
|
||||
else if (format == FORMAT_ETC && _image_decompress_etc1)
|
||||
_image_decompress_etc1(this);
|
||||
else if (format >= FORMAT_ETC2_R11 && format <= FORMAT_ETC2_RGB8A1 && _image_decompress_etc1)
|
||||
else if (format >= FORMAT_ETC2_R11 && format <= FORMAT_ETC2_RGB8A1 && _image_decompress_etc2)
|
||||
_image_decompress_etc2(this);
|
||||
else
|
||||
return ERR_UNAVAILABLE;
|
||||
|
|
Loading…
Reference in New Issue