mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-22 14:39:18 +01:00
Stub GetBufferHistory transaction
This commit is contained in:
parent
3795ecceff
commit
4a4f6df792
@ -706,6 +706,12 @@ namespace skyline::service::hosbinder {
|
||||
break;
|
||||
}
|
||||
|
||||
case TransactionCode::GetBufferHistory: {
|
||||
// Unimplemented for now
|
||||
out.Push(AndroidStatus::Ok);
|
||||
break;
|
||||
}
|
||||
|
||||
default:
|
||||
throw exception("An unimplemented transaction was called: {}", static_cast<u32>(code));
|
||||
}
|
||||
|
@ -187,6 +187,7 @@ namespace skyline::service::hosbinder {
|
||||
SetSidebandStream = 12,
|
||||
AllocateBuffers = 13,
|
||||
SetPreallocatedBuffer = 14, //!< A transaction specific to HOS, see the implementation for a description of its functionality
|
||||
GetBufferHistory = 17,
|
||||
};
|
||||
|
||||
GraphicBufferProducer(const DeviceState &state, nvdrv::core::NvMap &nvmap);
|
||||
|
Loading…
Reference in New Issue
Block a user