[INvDrvServices] Stub FinishInitialize
This commit is contained in:
parent
db0aa54233
commit
b6f799b295
1 changed files with 14 additions and 6 deletions
|
@ -31,12 +31,13 @@ namespace Ryujinx.Core.OsHle.Services.Nv
|
||||||
{
|
{
|
||||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||||
{
|
{
|
||||||
{ 0, Open },
|
{ 0, Open },
|
||||||
{ 1, Ioctl },
|
{ 1, Ioctl },
|
||||||
{ 2, Close },
|
{ 2, Close },
|
||||||
{ 3, Initialize },
|
{ 3, Initialize },
|
||||||
{ 4, QueryEvent },
|
{ 4, QueryEvent },
|
||||||
{ 8, SetClientPid },
|
{ 8, SetClientPid },
|
||||||
|
{ 13, FinishInitialize },
|
||||||
};
|
};
|
||||||
|
|
||||||
IoctlCmds = new Dictionary<(string, int), ServiceProcessIoctl>()
|
IoctlCmds = new Dictionary<(string, int), ServiceProcessIoctl>()
|
||||||
|
@ -165,6 +166,13 @@ namespace Ryujinx.Core.OsHle.Services.Nv
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public long FinishInitialize(ServiceCtx Context)
|
||||||
|
{
|
||||||
|
Logging.Stub(LogClass.ServiceNv, "Stubbed");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
private long NvGpuAsIoctlBindChannel(ServiceCtx Context)
|
private long NvGpuAsIoctlBindChannel(ServiceCtx Context)
|
||||||
{
|
{
|
||||||
long Position = Context.Request.GetSendBuffPtr();
|
long Position = Context.Request.GetSendBuffPtr();
|
||||||
|
|
Loading…
Reference in a new issue