Fix ETC2 import for luminance/lumalpha textures, fixes #10421
This commit is contained in:
parent
84c33cfe6b
commit
89e090edef
|
@ -37,7 +37,6 @@
|
||||||
|
|
||||||
static Image::Format _get_etc2_mode(Image::DetectChannels format) {
|
static Image::Format _get_etc2_mode(Image::DetectChannels format) {
|
||||||
switch (format) {
|
switch (format) {
|
||||||
case Image::DETECTED_L:
|
|
||||||
case Image::DETECTED_R:
|
case Image::DETECTED_R:
|
||||||
return Image::FORMAT_ETC2_R11;
|
return Image::FORMAT_ETC2_R11;
|
||||||
|
|
||||||
|
@ -47,7 +46,7 @@ static Image::Format _get_etc2_mode(Image::DetectChannels format) {
|
||||||
case Image::DETECTED_RGB:
|
case Image::DETECTED_RGB:
|
||||||
return Image::FORMAT_ETC2_RGB8;
|
return Image::FORMAT_ETC2_RGB8;
|
||||||
|
|
||||||
case Image::DETECTED_RGBA:
|
default:
|
||||||
return Image::FORMAT_ETC2_RGBA8;
|
return Image::FORMAT_ETC2_RGBA8;
|
||||||
|
|
||||||
// TODO: would be nice if we could use FORMAT_ETC2_RGB8A1 for FORMAT_RGBA5551
|
// TODO: would be nice if we could use FORMAT_ETC2_RGB8A1 for FORMAT_RGBA5551
|
||||||
|
|
Loading…
Reference in New Issue