2018-02-20 20:09:23 +00:00
|
|
|
using Ryujinx.Core.OsHle.Ipc;
|
2018-02-10 00:14:55 +00:00
|
|
|
using System.Collections.Generic;
|
2018-05-11 02:40:52 +00:00
|
|
|
using Ryujinx.Core.Logging;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
2018-03-20 20:00:00 +00:00
|
|
|
namespace Ryujinx.Core.OsHle.Services.Vi
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
2018-03-19 18:58:46 +00:00
|
|
|
class IManagerDisplayService : IpcService
|
2018-02-10 00:14:55 +00:00
|
|
|
{
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
2018-03-19 18:58:46 +00:00
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
2018-02-10 00:14:55 +00:00
|
|
|
|
|
|
|
public IManagerDisplayService()
|
|
|
|
{
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
{
|
2018-03-06 20:27:50 +00:00
|
|
|
{ 2010, CreateManagedLayer },
|
|
|
|
{ 2011, DestroyManagedLayer },
|
2018-05-11 02:40:52 +00:00
|
|
|
{ 6000, AddToLayerStack },
|
|
|
|
{ 6002, SetLayerVisibility }
|
2018-02-10 00:14:55 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long CreateManagedLayer(ServiceCtx Context)
|
|
|
|
{
|
2018-05-11 02:40:52 +00:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceVi, "Stubbed.");
|
2018-02-10 00:14:55 +00:00
|
|
|
Context.ResponseData.Write(0L); //LayerId
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-03-06 20:27:50 +00:00
|
|
|
public long DestroyManagedLayer(ServiceCtx Context)
|
|
|
|
{
|
2018-05-11 02:40:52 +00:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceVi, "Stubbed.");
|
2018-03-06 20:27:50 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-10 00:14:55 +00:00
|
|
|
public static long AddToLayerStack(ServiceCtx Context)
|
|
|
|
{
|
2018-05-11 02:40:52 +00:00
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceVi, "Stubbed.");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static long SetLayerVisibility(ServiceCtx Context)
|
|
|
|
{
|
|
|
|
Context.Ns.Log.PrintStub(LogClass.ServiceVi, "Stubbed.");
|
2018-02-10 00:14:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|