mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 04:08:35 +00:00
c464e1ec52
* Stub the application copyright framebuffer api As we currently don't support multi layers on vi/nvnflinger, this PR implement a stub of this API. * Address Cyuubi's comments * Add IPC checks and comments for future reversing Co-authored-by: Ac_K <Acoustik666@gmail.com> Co-authored-by: Ac_K <Acoustik666@gmail.com>
17 lines
537 B
C#
17 lines
537 B
C#
namespace Ryujinx.HLE.HOS.Services.Am
|
|
{
|
|
enum ResultCode
|
|
{
|
|
ModuleId = 128,
|
|
ErrorCodeShift = 9,
|
|
|
|
Success = 0,
|
|
|
|
NotAvailable = (2 << ErrorCodeShift) | ModuleId,
|
|
NoMessages = (3 << ErrorCodeShift) | ModuleId,
|
|
ObjectInvalid = (500 << ErrorCodeShift) | ModuleId,
|
|
OutOfBounds = (503 << ErrorCodeShift) | ModuleId,
|
|
InvalidParameters = (506 << ErrorCodeShift) | ModuleId,
|
|
NullObject = (518 << ErrorCodeShift) | ModuleId
|
|
}
|
|
} |