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