diff options
| author | 2018-01-07 21:27:58 -0500 | |
|---|---|---|
| committer | 2018-01-10 23:28:09 -0500 | |
| commit | 25f29c2f4fd2415373f8af24fb61142ab4b343e6 (patch) | |
| tree | d20a1c7c41051f37183b2d095f2edb34ea8a207b /src/core/hle/service/service.cpp | |
| parent | NV: Implemented the nvdrv:a service and the /dev/nvmap device. (diff) | |
| download | yuzu-25f29c2f4fd2415373f8af24fb61142ab4b343e6.tar.gz yuzu-25f29c2f4fd2415373f8af24fb61142ab4b343e6.tar.xz yuzu-25f29c2f4fd2415373f8af24fb61142ab4b343e6.zip | |
NV: Implemented (with stubs) the vi:m service and some of its subservices.
The homebrew display test application now properly writes graphics data to the graphics buffer but we still don't have a way to compose the display layers.
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 3dfde8f39..389243035 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -21,10 +21,12 @@ | |||
| 21 | #include "core/hle/service/gsp_gpu.h" | 21 | #include "core/hle/service/gsp_gpu.h" |
| 22 | #include "core/hle/service/hid/hid.h" | 22 | #include "core/hle/service/hid/hid.h" |
| 23 | #include "core/hle/service/lm/lm.h" | 23 | #include "core/hle/service/lm/lm.h" |
| 24 | #include "core/hle/service/nvdrv/nvdrv.h" | ||
| 24 | #include "core/hle/service/pctl/pctl.h" | 25 | #include "core/hle/service/pctl/pctl.h" |
| 25 | #include "core/hle/service/service.h" | 26 | #include "core/hle/service/service.h" |
| 26 | #include "core/hle/service/sm/controller.h" | 27 | #include "core/hle/service/sm/controller.h" |
| 27 | #include "core/hle/service/sm/sm.h" | 28 | #include "core/hle/service/sm/sm.h" |
| 29 | #include "core/hle/service/vi/vi.h" | ||
| 28 | 30 | ||
| 29 | using Kernel::ClientPort; | 31 | using Kernel::ClientPort; |
| 30 | using Kernel::ServerPort; | 32 | using Kernel::ServerPort; |
| @@ -165,7 +167,9 @@ void Init() { | |||
| 165 | AOC::InstallInterfaces(*SM::g_service_manager); | 167 | AOC::InstallInterfaces(*SM::g_service_manager); |
| 166 | APM::InstallInterfaces(*SM::g_service_manager); | 168 | APM::InstallInterfaces(*SM::g_service_manager); |
| 167 | LM::InstallInterfaces(*SM::g_service_manager); | 169 | LM::InstallInterfaces(*SM::g_service_manager); |
| 170 | NVDRV::InstallInterfaces(*SM::g_service_manager); | ||
| 168 | PCTL::InstallInterfaces(*SM::g_service_manager); | 171 | PCTL::InstallInterfaces(*SM::g_service_manager); |
| 172 | VI::InstallInterfaces(*SM::g_service_manager); | ||
| 169 | 173 | ||
| 170 | HID::Init(); | 174 | HID::Init(); |
| 171 | 175 | ||