diff options
author | bsaleil <baptiste.saleil@gmail.com> | 2018-01-15 07:29:00 +0100 |
---|---|---|
committer | bsaleil <baptiste.saleil@gmail.com> | 2018-01-15 07:29:00 +0100 |
commit | af1ca87be106f7b6778d6b02e788835d8b4c3ffe (patch) | |
tree | 952e9c3ec37de6ff0fb7be47b20e7921b8f2de53 /src/core/hle | |
parent | Merge pull request #13 from hpr/fno-new-ttp-matching (diff) | |
download | yuzu-af1ca87be106f7b6778d6b02e788835d8b4c3ffe.tar yuzu-af1ca87be106f7b6778d6b02e788835d8b4c3ffe.tar.gz yuzu-af1ca87be106f7b6778d6b02e788835d8b4c3ffe.tar.bz2 yuzu-af1ca87be106f7b6778d6b02e788835d8b4c3ffe.tar.lz yuzu-af1ca87be106f7b6778d6b02e788835d8b4c3ffe.tar.xz yuzu-af1ca87be106f7b6778d6b02e788835d8b4c3ffe.tar.zst yuzu-af1ca87be106f7b6778d6b02e788835d8b4c3ffe.zip |
Diffstat (limited to 'src/core/hle')
-rw-r--r-- | src/core/hle/service/vi/vi.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp index b35a7a377..93ebbe75f 100644 --- a/src/core/hle/service/vi/vi.cpp +++ b/src/core/hle/service/vi/vi.cpp @@ -494,6 +494,7 @@ public: IManagerDisplayService(std::shared_ptr<NVFlinger> nv_flinger) : ServiceFramework("IManagerDisplayService"), nv_flinger(std::move(nv_flinger)) { static const FunctionInfo functions[] = { + {1020, &IManagerDisplayService::CloseDisplay, "CloseDisplay"}, {1102, nullptr, "GetDisplayResolution"}, {2010, &IManagerDisplayService::CreateManagedLayer, "CreateManagedLayer"}, {6000, &IManagerDisplayService::AddToLayerStack, "AddToLayerStack"}, @@ -503,6 +504,15 @@ public: ~IManagerDisplayService() = default; private: + void CloseDisplay(Kernel::HLERequestContext& ctx) { + LOG_WARNING(Service, "(STUBBED) called"); + IPC::RequestParser rp{ctx}; + u64 display = rp.Pop<u64>(); + + IPC::RequestBuilder rb = rp.MakeBuilder(2, 0, 0, 0); + rb.Push(RESULT_SUCCESS); + } + void CreateManagedLayer(Kernel::HLERequestContext& ctx) { LOG_WARNING(Service, "(STUBBED) called"); IPC::RequestParser rp{ctx}; |