summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi_s.h
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_s.h
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 '')
-rw-r--r--src/core/hle/service/vi/vi_s.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi_s.h b/src/core/hle/service/vi/vi_s.h
new file mode 100644
index 000000000..6978fd700
--- /dev/null
+++ b/src/core/hle/service/vi/vi_s.h
@@ -0,0 +1,29 @@
+// Copyright 2018 yuzu emulator team
+// Licensed under GPLv2 or any later version
+// Refer to the license.txt file included.
+
+#pragma once
+
+#include <memory>
+#include "core/hle/service/service.h"
+
+namespace Service {
+namespace NVFlinger {
+class NVFlinger;
+}
+
+namespace VI {
+
+class VI_S final : public ServiceFramework<VI_S> {
+public:
+ VI_S(std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
+ ~VI_S() = default;
+
+private:
+ void GetDisplayService(Kernel::HLERequestContext& ctx);
+
+ std::shared_ptr<NVFlinger::NVFlinger> nv_flinger;
+};
+
+} // namespace VI
+} // namespace Service