mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-19 09:54:54 +00:00
amdgpu: EOS event packet handling
This commit is contained in:
parent
8e0c67f12e
commit
581688c1ac
2 changed files with 55 additions and 7 deletions
|
@ -69,7 +69,16 @@ void Liverpool::ProcessCmdList(u32* cmdbuf, u32 size_in_bytes) {
|
|||
break;
|
||||
}
|
||||
case PM4ItOpcode::EventWriteEos: {
|
||||
// const auto* event_eos = reinterpret_cast<PM4CmdEventWriteEos*>(header);
|
||||
const auto* event_eos = reinterpret_cast<PM4CmdEventWriteEos*>(header);
|
||||
switch (event_eos->command.Value()) {
|
||||
case PM4CmdEventWriteEos::Command::SingalFence: {
|
||||
event_eos->SignalFence();
|
||||
break;
|
||||
}
|
||||
default: {
|
||||
UNREACHABLE();
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
case PM4ItOpcode::EventWriteEop: {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue