Stub GetBufferHistory transaction

This commit is contained in:
Billy Laws 2023-01-20 23:20:55 +00:00
parent 3795ecceff
commit 4a4f6df792
2 changed files with 7 additions and 0 deletions

View File

@ -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));
}

View File

@ -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);