summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi_s.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-02-26 23:20:02 +0100
committerLioncash <mathew1800@gmail.com>2019-02-26 23:44:03 +0100
commit1b2872eebc84ef3b35f8c0456ccb22519059d66a (patch)
tree19cbafdc2bc8f30d4a64097cb93b4a8f8882fc95 /src/core/hle/service/vi/vi_s.cpp
parentMerge pull request #2118 from FernandoS27/ipa-improve (diff)
downloadyuzu-1b2872eebc84ef3b35f8c0456ccb22519059d66a.tar
yuzu-1b2872eebc84ef3b35f8c0456ccb22519059d66a.tar.gz
yuzu-1b2872eebc84ef3b35f8c0456ccb22519059d66a.tar.bz2
yuzu-1b2872eebc84ef3b35f8c0456ccb22519059d66a.tar.lz
yuzu-1b2872eebc84ef3b35f8c0456ccb22519059d66a.tar.xz
yuzu-1b2872eebc84ef3b35f8c0456ccb22519059d66a.tar.zst
yuzu-1b2872eebc84ef3b35f8c0456ccb22519059d66a.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/vi/vi_s.cpp12
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..6dd700eae 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_WARNING(Service_VI, "(STUBBED) called");
+
+ detail::GetDisplayServiceImpl(ctx, nv_flinger);
+}
+
} // namespace Service::VI