Updates to nifm, irs and nvdrv services (#679)
This commit is contained in:
parent
26be1cb4e2
commit
6e8c080968
3 changed files with 50 additions and 12 deletions
|
@ -42,14 +42,15 @@ namespace Ryujinx.HLE.HOS.Services.Nv
|
|||
{
|
||||
_commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
{
|
||||
{ 0, Open },
|
||||
{ 1, Ioctl },
|
||||
{ 2, Close },
|
||||
{ 3, Initialize },
|
||||
{ 4, QueryEvent },
|
||||
{ 8, SetClientPid },
|
||||
{ 11, Ioctl },
|
||||
{ 13, FinishInitialize }
|
||||
{ 0, Open },
|
||||
{ 1, Ioctl },
|
||||
{ 2, Close },
|
||||
{ 3, Initialize },
|
||||
{ 4, QueryEvent },
|
||||
{ 8, SetClientPid },
|
||||
{ 9, DumpGraphicsMemoryInfo },
|
||||
{ 11, Ioctl },
|
||||
{ 13, FinishInitialize }
|
||||
};
|
||||
|
||||
_event = new KEvent(system);
|
||||
|
@ -148,6 +149,13 @@ namespace Ryujinx.HLE.HOS.Services.Nv
|
|||
return 0;
|
||||
}
|
||||
|
||||
public long DumpGraphicsMemoryInfo(ServiceCtx context)
|
||||
{
|
||||
Logger.PrintStub(LogClass.ServiceNv);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public long FinishInitialize(ServiceCtx context)
|
||||
{
|
||||
Logger.PrintStub(LogClass.ServiceNv);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue