mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 09:59:32 -06:00
TextureDecoder: Move XFB decoding to Common
This was previously missing for generic (which is used on ARM).
This commit is contained in:
@ -346,5 +346,8 @@ void _TexDecoder_DecodeImpl(u32* dst, const u8* src, int width, int height, Text
|
||||
}
|
||||
break;
|
||||
}
|
||||
case TextureFormat::XFB:
|
||||
TexDecoder_DecodeXFB(reinterpret_cast<u8*>(dst), src, width, height, width * 2);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user