aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Nv
diff options
context:
space:
mode:
authorHorrorTroll <sonicvipduc@gmail.com>2019-04-25 20:03:00 +0700
committerjduncanator <1518948+jduncanator@users.noreply.github.com>2019-04-25 23:03:00 +1000
commit6e8c080968a3de33166c258512bd69e08b73aa69 (patch)
tree60e985956030663d0a513e21f7b1a1c4c147046a /Ryujinx.HLE/HOS/Services/Nv
parent26be1cb4e285ed275ee885ec398833b02345a0e7 (diff)
Updates to nifm, irs and nvdrv services (#679)
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Nv')
-rw-r--r--Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs24
1 files changed, 16 insertions, 8 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs b/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs
index d93372e2..600a9667 100644
--- a/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs
+++ b/Ryujinx.HLE/HOS/Services/Nv/INvDrvServices.cs
@@ -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);