diff options
| author | bunnei <bunneidev@gmail.com> | 2019-03-13 10:01:54 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-13 10:01:54 -0400 |
| commit | e8a21f52769ceef8aefdd06c54ca7026ab1a3d9a (patch) | |
| tree | 67ae631eb4c09c0b7ebc2496b2a55adadcd33f22 /src/core/hle/service/vi/vi_s.cpp | |
| parent | 71c4e876efd20e0bae875a80effe2bc5561453e7 (diff) | |
| parent | 92ea1c32d608cd258c3fc077f5aaf953536d7f45 (diff) | |
Merge pull request #2166 from lioncash/vi-init-service
service/vi: Unstub GetDisplayService
Diffstat (limited to 'src/core/hle/service/vi/vi_s.cpp')
| -rw-r--r-- | src/core/hle/service/vi/vi_s.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/core/hle/service/vi/vi_s.cpp b/src/core/hle/service/vi/vi_s.cpp index 920e6a1f6..57c596cc4 100644 --- a/src/core/hle/service/vi/vi_s.cpp +++ b/src/core/hle/service/vi/vi_s.cpp @@ -2,12 +2,14 @@ // Licensed under GPLv2 or any later version // Refer to the license.txt file included. +#include "common/logging/log.h" +#include "core/hle/service/vi/vi.h" #include "core/hle/service/vi/vi_s.h" namespace Service::VI { -VI_S::VI_S(std::shared_ptr<Module> module, std::shared_ptr<NVFlinger::NVFlinger> nv_flinger) - : Module::Interface(std::move(module), "vi:s", std::move(nv_flinger)) { +VI_S::VI_S(std::shared_ptr<NVFlinger::NVFlinger> nv_flinger) + : ServiceFramework{"vi:s"}, nv_flinger{std::move(nv_flinger)} { static const FunctionInfo functions[] = { {1, &VI_S::GetDisplayService, "GetDisplayService"}, {3, nullptr, "GetDisplayServiceWithProxyNameExchange"}, @@ -17,4 +19,10 @@ VI_S::VI_S(std::shared_ptr<Module> module, std::shared_ptr<NVFlinger::NVFlinger> VI_S::~VI_S() = default; +void VI_S::GetDisplayService(Kernel::HLERequestContext& ctx) { + LOG_DEBUG(Service_VI, "called"); + + detail::GetDisplayServiceImpl(ctx, nv_flinger, Permission::System); +} + } // namespace Service::VI |
