mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 10:37:56 -05:00
hle: Implement ConvertSessionToDomain, various cleanups.
This commit is contained in:
@ -144,6 +144,16 @@ struct DataPayloadHeader {
|
||||
};
|
||||
static_assert(sizeof(DataPayloadHeader) == 8, "DataPayloadRequest size is incorrect");
|
||||
|
||||
struct DomainMessageHeader {
|
||||
union {
|
||||
BitField<0, 8, u32_le> command;
|
||||
BitField<16, 16, u32_le> size;
|
||||
};
|
||||
u32_le object_id;
|
||||
INSERT_PADDING_WORDS(2);
|
||||
};
|
||||
static_assert(sizeof(DomainMessageHeader) == 16, "DomainMessageHeader size is incorrect");
|
||||
|
||||
enum DescriptorType : u32 {
|
||||
// Buffer related desciptors types (mask : 0x0F)
|
||||
StaticBuffer = 0x02,
|
||||
|
Reference in New Issue
Block a user