summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi_s.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-03-21 15:48:15 +0100
committerGitHub <noreply@github.com>2018-03-21 15:48:15 +0100
commit4721ea4523c991c2a1bd28947b45e506bc988a8d (patch)
tree23906e74e5bacd975eb6b1046fc9b4ed6290d698 /src/core/hle/service/vi/vi_s.cpp
parentMerge pull request #254 from bunnei/port-citra-renderer (diff)
parentService/vi: convert services to module (diff)
downloadyuzu-4721ea4523c991c2a1bd28947b45e506bc988a8d.tar
yuzu-4721ea4523c991c2a1bd28947b45e506bc988a8d.tar.gz
yuzu-4721ea4523c991c2a1bd28947b45e506bc988a8d.tar.bz2
yuzu-4721ea4523c991c2a1bd28947b45e506bc988a8d.tar.lz
yuzu-4721ea4523c991c2a1bd28947b45e506bc988a8d.tar.xz
yuzu-4721ea4523c991c2a1bd28947b45e506bc988a8d.tar.zst
yuzu-4721ea4523c991c2a1bd28947b45e506bc988a8d.zip
Diffstat (limited to 'src/core/hle/service/vi/vi_s.cpp')
-rw-r--r--src/core/hle/service/vi/vi_s.cpp15
1 files changed, 2 insertions, 13 deletions
diff --git a/src/core/hle/service/vi/vi_s.cpp b/src/core/hle/service/vi/vi_s.cpp
index 411757981..1f937b2a8 100644
--- a/src/core/hle/service/vi/vi_s.cpp
+++ b/src/core/hle/service/vi/vi_s.cpp
@@ -2,24 +2,13 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include "common/logging/log.h"
-#include "core/hle/ipc_helpers.h"
-#include "core/hle/service/vi/vi.h"
#include "core/hle/service/vi/vi_s.h"
namespace Service {
namespace VI {
-void VI_S::GetDisplayService(Kernel::HLERequestContext& ctx) {
- LOG_WARNING(Service_VI, "(STUBBED) called");
-
- IPC::ResponseBuilder rb{ctx, 2, 0, 1};
- rb.Push(RESULT_SUCCESS);
- rb.PushIpcInterface<IApplicationDisplayService>(nv_flinger);
-}
-
-VI_S::VI_S(std::shared_ptr<NVFlinger::NVFlinger> nv_flinger)
- : ServiceFramework("vi:s"), nv_flinger(std::move(nv_flinger)) {
+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)) {
static const FunctionInfo functions[] = {
{1, &VI_S::GetDisplayService, "GetDisplayService"},
{3, nullptr, "GetDisplayServiceWithProxyNameExchange"},