mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 11:58:28 -05:00
NV: Implemented the nvdrv:a service and the /dev/nvmap device.
This commit is contained in:
16
src/core/hle/service/nvdrv/nvdrv.cpp
Normal file
16
src/core/hle/service/nvdrv/nvdrv.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
// Copyright 2017 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "core/hle/service/nvdrv/nvdrv.h"
|
||||
#include "core/hle/service/nvdrv/nvdrv_a.h"
|
||||
|
||||
namespace Service {
|
||||
namespace NVDRV {
|
||||
|
||||
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
||||
std::make_shared<NVDRV_A>()->InstallAsService(service_manager);
|
||||
}
|
||||
|
||||
} // namespace nvdrv
|
||||
} // namespace Service
|
Reference in New Issue
Block a user