From 524c12a5f8fd1fcc9355351d1bcb08bfafaeb940 Mon Sep 17 00:00:00 2001 From: mailwl Date: Fri, 2 Feb 2018 12:59:50 +0300 Subject: Services/vi: add vi:s and vi:u services --- src/core/hle/service/vi/vi.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/core/hle/service/vi/vi.cpp') 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 nv_flinger) { std::make_shared(nv_flinger)->InstallAsService(service_manager); + std::make_shared(nv_flinger)->InstallAsService(service_manager); + std::make_shared(nv_flinger)->InstallAsService(service_manager); } } // namespace VI -- cgit v1.2.3