mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 21:07:47 +00:00
GPU: Implement TextureCopy-mode display transfers
Fixes glitchy garbage in Fire Emblem 3D scenes.
This commit is contained in:
parent
86f72f80e1
commit
209113743f
4 changed files with 101 additions and 36 deletions
|
@ -127,7 +127,16 @@ struct Command {
|
|||
u32 in_buffer_size;
|
||||
u32 out_buffer_size;
|
||||
u32 flags;
|
||||
} image_copy;
|
||||
} display_transfer;
|
||||
|
||||
struct {
|
||||
u32 in_buffer_address;
|
||||
u32 out_buffer_address;
|
||||
u32 size;
|
||||
u32 in_width_gap;
|
||||
u32 out_width_gap;
|
||||
u32 flags;
|
||||
} texture_copy;
|
||||
|
||||
u8 raw_data[0x1C];
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue