summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi_u.cpp
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-02-02 10:59:50 +0100
committermailwl <mailwl@gmail.com>2018-02-02 10:59:50 +0100
commit524c12a5f8fd1fcc9355351d1bcb08bfafaeb940 (patch)
tree3b2850a4ed7195f26d7b0bcd96d4580006b5fbca /src/core/hle/service/vi/vi_u.cpp
parent[WIP] sfdnsres: stub (#146) (diff)
downloadyuzu-524c12a5f8fd1fcc9355351d1bcb08bfafaeb940.tar
yuzu-524c12a5f8fd1fcc9355351d1bcb08bfafaeb940.tar.gz
yuzu-524c12a5f8fd1fcc9355351d1bcb08bfafaeb940.tar.bz2
yuzu-524c12a5f8fd1fcc9355351d1bcb08bfafaeb940.tar.lz
yuzu-524c12a5f8fd1fcc9355351d1bcb08bfafaeb940.tar.xz
yuzu-524c12a5f8fd1fcc9355351d1bcb08bfafaeb940.tar.zst
yuzu-524c12a5f8fd1fcc9355351d1bcb08bfafaeb940.zip
Diffstat (limited to 'src/core/hle/service/vi/vi_u.cpp')
-rw-r--r--src/core/hle/service/vi/vi_u.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi_u.cpp b/src/core/hle/service/vi/vi_u.cpp
new file mode 100644
index 000000000..95c4d9fd7
--- /dev/null
+++ b/src/core/hle/service/vi/vi_u.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_u.h"
+
+namespace Service {
+namespace VI {
+
+void VI_U::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_U::VI_U(std::shared_ptr<NVFlinger::NVFlinger> nv_flinger)
+ : ServiceFramework("vi:u"), nv_flinger(std::move(nv_flinger)) {
+ static const FunctionInfo functions[] = {
+ {0, &VI_U::GetDisplayService, "GetDisplayService"},
+ {3, nullptr, "GetDisplayServiceWithProxyNameExchange"},
+ };
+ RegisterHandlers(functions);
+}
+
+} // namespace VI
+} // namespace Service