summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi_s.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-02 18:00:31 +0100
committerGitHub <noreply@github.com>2018-02-02 18:00:31 +0100
commit19098021560e66659aae5e0318faa09637fc8174 (patch)
tree6e7f22a1f10eb09757ba61341e82268a1795bd30 /src/core/hle/service/vi/vi_s.cpp
parentMerge pull request #152 from shinyquagsire23/sharedmem-valid-bounds (diff)
parentServices/vi: add vi:s and vi:u services (diff)
downloadyuzu-19098021560e66659aae5e0318faa09637fc8174.tar
yuzu-19098021560e66659aae5e0318faa09637fc8174.tar.gz
yuzu-19098021560e66659aae5e0318faa09637fc8174.tar.bz2
yuzu-19098021560e66659aae5e0318faa09637fc8174.tar.lz
yuzu-19098021560e66659aae5e0318faa09637fc8174.tar.xz
yuzu-19098021560e66659aae5e0318faa09637fc8174.tar.zst
yuzu-19098021560e66659aae5e0318faa09637fc8174.zip
Diffstat (limited to 'src/core/hle/service/vi/vi_s.cpp')
-rw-r--r--src/core/hle/service/vi/vi_s.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi_s.cpp b/src/core/hle/service/vi/vi_s.cpp
new file mode 100644
index 000000000..dc2848a9c
--- /dev/null
+++ b/src/core/hle/service/vi/vi_s.cpp
@@ -0,0 +1,31 @@
+// Copyright 2018 yuzu emulator team
+// 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, "(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)) {
+ static const FunctionInfo functions[] = {
+ {1, &VI_S::GetDisplayService, "GetDisplayService"},
+ {3, nullptr, "GetDisplayServiceWithProxyNameExchange"},
+ };
+ RegisterHandlers(functions);
+}
+
+} // namespace VI
+} // namespace Service