summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi_u.h
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-03-21 11:09:40 +0100
committermailwl <mailwl@gmail.com>2018-03-21 11:09:40 +0100
commit6673ed127478299cec22b8612d4e55b00225c345 (patch)
tree23906e74e5bacd975eb6b1046fc9b4ed6290d698 /src/core/hle/service/vi/vi_u.h
parentMerge pull request #254 from bunnei/port-citra-renderer (diff)
downloadyuzu-6673ed127478299cec22b8612d4e55b00225c345.tar
yuzu-6673ed127478299cec22b8612d4e55b00225c345.tar.gz
yuzu-6673ed127478299cec22b8612d4e55b00225c345.tar.bz2
yuzu-6673ed127478299cec22b8612d4e55b00225c345.tar.lz
yuzu-6673ed127478299cec22b8612d4e55b00225c345.tar.xz
yuzu-6673ed127478299cec22b8612d4e55b00225c345.tar.zst
yuzu-6673ed127478299cec22b8612d4e55b00225c345.zip
Diffstat (limited to 'src/core/hle/service/vi/vi_u.h')
-rw-r--r--src/core/hle/service/vi/vi_u.h17
1 files changed, 3 insertions, 14 deletions
diff --git a/src/core/hle/service/vi/vi_u.h b/src/core/hle/service/vi/vi_u.h
index b3e9c094d..c557a2235 100644
--- a/src/core/hle/service/vi/vi_u.h
+++ b/src/core/hle/service/vi/vi_u.h
@@ -4,25 +4,14 @@
#pragma once
-#include <memory>
-#include "core/hle/service/service.h"
+#include "core/hle/service/vi/vi.h"
namespace Service {
-namespace NVFlinger {
-class NVFlinger;
-}
-
namespace VI {
-class VI_U final : public ServiceFramework<VI_U> {
+class VI_U final : public Module::Interface {
public:
- VI_U(std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
- ~VI_U() = default;
-
-private:
- void GetDisplayService(Kernel::HLERequestContext& ctx);
-
- std::shared_ptr<NVFlinger::NVFlinger> nv_flinger;
+ explicit VI_U(std::shared_ptr<Module> module, std::shared_ptr<NVFlinger::NVFlinger> nv_flinger);
};
} // namespace VI