stubs (#69)
This commit is contained in:
parent
e16ca561cb
commit
836a003c8e
8 changed files with 59 additions and 4 deletions
|
@ -25,6 +25,7 @@ namespace Ryujinx.Core.OsHle.Services.Vi
|
|||
{ 103, GetIndirectDisplayTransactionService },
|
||||
{ 1010, OpenDisplay },
|
||||
{ 1020, CloseDisplay },
|
||||
{ 1102, GetDisplayResolution },
|
||||
{ 2020, OpenLayer },
|
||||
{ 2021, CloseLayer },
|
||||
{ 2030, CreateStrayLayer },
|
||||
|
@ -84,6 +85,16 @@ namespace Ryujinx.Core.OsHle.Services.Vi
|
|||
return 0;
|
||||
}
|
||||
|
||||
public long GetDisplayResolution(ServiceCtx Context)
|
||||
{
|
||||
long DisplayId = Context.RequestData.ReadInt32();
|
||||
|
||||
Context.ResponseData.Write(1280);
|
||||
Context.ResponseData.Write(720);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public long OpenLayer(ServiceCtx Context)
|
||||
{
|
||||
long LayerId = Context.RequestData.ReadInt64();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue