Add support to more color formats

- RGBA4444: fully working
- RGBA5551: fully not working
- LA8, LA4: fully working
This commit is contained in:
2026-01-08 18:59:47 +01:00
parent 86461481ae
commit f5a58278db
5 changed files with 137 additions and 13 deletions

View File

@@ -9,15 +9,15 @@
namespace ctrff {
namespace Pica {
enum Color : u32 {
L8, // tested
A8, // tested
LA4,
LA8,
L8, // tested
A8, // tested
LA4, // tested
LA8, // tested
HILO8,
RGB565, // tested
RGB888, // tested
RGBA5551,
RGBA4444,
RGBA4444, // tested
RGBA8888, // tested
ETC1,
ETC1A4,