Skip to content
Snippets Groups Projects
Commit ab86b80c authored by Subv's avatar Subv Committed by bunnei
Browse files

IPC: Corrected some definitions for the buffer C descriptor flags.

parent ba02f0de
No related branches found
No related tags found
No related merge requests found
......@@ -48,8 +48,8 @@ struct CommandHeader {
enum class BufferDescriptorCFlag : u32 {
Disabled = 0,
NoDescriptor = 1,
TwoDesciptors = 2,
InlineDescriptor = 1,
OneDescriptor = 2,
};
union {
......
......@@ -83,7 +83,10 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) {
}
if (command_header->buf_c_descriptor_flags !=
IPC::CommandHeader::BufferDescriptorCFlag::Disabled) {
UNIMPLEMENTED();
if (command_header->buf_c_descriptor_flags !=
IPC::CommandHeader::BufferDescriptorCFlag::OneDescriptor) {
UNIMPLEMENTED();
}
}
// Padding to align to 16 bytes
......
......@@ -139,6 +139,10 @@ public:
return buffer_a_desciptors;
}
const std::vector<IPC::BufferDescriptorABW>& BufferDescriptorB() const {
return buffer_b_desciptors;
}
const std::unique_ptr<IPC::DomainMessageHeader>& GetDomainMessageHeader() const {
return domain_message_header;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment