summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi.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.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.cpp')
-rw-r--r--src/core/hle/service/vi/vi.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/vi/vi.cpp b/src/core/hle/service/vi/vi.cpp
index 3b993f36c..e32ea1fb8 100644
--- a/src/core/hle/service/vi/vi.cpp
+++ b/src/core/hle/service/vi/vi.cpp
@@ -11,6 +11,8 @@
#include "core/hle/service/nvflinger/buffer_queue.h"
#include "core/hle/service/vi/vi.h"
#include "core/hle/service/vi/vi_m.h"
+#include "core/hle/service/vi/vi_s.h"
+#include "core/hle/service/vi/vi_u.h"
#include "video_core/renderer_base.h"
#include "video_core/video_core.h"
@@ -756,6 +758,8 @@ IApplicationDisplayService::IApplicationDisplayService(
void InstallInterfaces(SM::ServiceManager& service_manager,
std::shared_ptr<NVFlinger::NVFlinger> nv_flinger) {
std::make_shared<VI_M>(nv_flinger)->InstallAsService(service_manager);
+ std::make_shared<VI_S>(nv_flinger)->InstallAsService(service_manager);
+ std::make_shared<VI_U>(nv_flinger)->InstallAsService(service_manager);
}
} // namespace VI