ISystemDisplayService.cs 618 B

12345678910111213141516171819202122232425
  1. using Ryujinx.Core.OsHle.Ipc;
  2. using System.Collections.Generic;
  3. namespace Ryujinx.Core.OsHle.Objects.Vi
  4. {
  5. class ISystemDisplayService : IIpcInterface
  6. {
  7. private Dictionary<int, ServiceProcessRequest> m_Commands;
  8. public IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
  9. public ISystemDisplayService()
  10. {
  11. m_Commands = new Dictionary<int, ServiceProcessRequest>()
  12. {
  13. { 2205, SetLayerZ }
  14. };
  15. }
  16. public static long SetLayerZ(ServiceCtx Context)
  17. {
  18. return 0;
  19. }
  20. }
  21. }