mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 07:06:39 +00:00
implemented ListDisplays
This commit is contained in:
parent
1344a47c77
commit
4a3ed0cec7
1 changed files with 21 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
||||||
|
using ChocolArm64.Memory;
|
||||||
using Ryujinx.HLE.OsHle.Ipc;
|
using Ryujinx.HLE.OsHle.Ipc;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System.Text;
|
||||||
|
|
||||||
using static Ryujinx.HLE.OsHle.Services.Android.Parcel;
|
using static Ryujinx.HLE.OsHle.Services.Android.Parcel;
|
||||||
|
|
||||||
|
@ -22,6 +24,7 @@ namespace Ryujinx.HLE.OsHle.Services.Vi
|
||||||
{ 101, GetSystemDisplayService },
|
{ 101, GetSystemDisplayService },
|
||||||
{ 102, GetManagerDisplayService },
|
{ 102, GetManagerDisplayService },
|
||||||
{ 103, GetIndirectDisplayTransactionService },
|
{ 103, GetIndirectDisplayTransactionService },
|
||||||
|
{ 1000, ListDisplays },
|
||||||
{ 1010, OpenDisplay },
|
{ 1010, OpenDisplay },
|
||||||
{ 1020, CloseDisplay },
|
{ 1020, CloseDisplay },
|
||||||
{ 1102, GetDisplayResolution },
|
{ 1102, GetDisplayResolution },
|
||||||
|
@ -64,6 +67,24 @@ namespace Ryujinx.HLE.OsHle.Services.Vi
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long ListDisplays(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
long RecBuffPtr = Context.Request.ReceiveBuff[0].Position;
|
||||||
|
|
||||||
|
AMemoryHelper.FillWithZeros(Context.Memory, RecBuffPtr, 0x60);
|
||||||
|
|
||||||
|
//Add only the default display to buffer
|
||||||
|
Context.Memory.WriteBytes(RecBuffPtr, Encoding.ASCII.GetBytes("Default"));
|
||||||
|
Context.Memory.WriteInt64(RecBuffPtr + 0x40, 0x1L);
|
||||||
|
Context.Memory.WriteInt64(RecBuffPtr + 0x48, 0x1L);
|
||||||
|
Context.Memory.WriteInt64(RecBuffPtr + 0x50, 1920L);
|
||||||
|
Context.Memory.WriteInt64(RecBuffPtr + 0x58, 1080L);
|
||||||
|
|
||||||
|
Context.ResponseData.Write(1L);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
public long OpenDisplay(ServiceCtx Context)
|
public long OpenDisplay(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
string Name = GetDisplayName(Context);
|
string Name = GetDisplayName(Context);
|
||||||
|
|
Loading…
Reference in a new issue