summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/interface.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-16 00:30:49 +0100
committerbunnei <bunneidev@gmail.com>2018-01-17 01:04:09 +0100
commitcb75b56e454a36190f07ee34b0e4e6ee6a7a66be (patch)
treef5af26691caa3aef505c2a66b07831f24c83b8e4 /src/core/hle/service/nvdrv/interface.cpp
parentNV: Move the nvdrv classes into the Nvidia namespace, and move the functionality to a s single module that services call. (diff)
downloadyuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar.gz
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar.bz2
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar.lz
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar.xz
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.tar.zst
yuzu-cb75b56e454a36190f07ee34b0e4e6ee6a7a66be.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/nvdrv/interface.cpp (renamed from src/core/hle/service/nvdrv/nvdrv_a.cpp)18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/core/hle/service/nvdrv/nvdrv_a.cpp b/src/core/hle/service/nvdrv/interface.cpp
index 5d3e68792..0670ca155 100644
--- a/src/core/hle/service/nvdrv/nvdrv_a.cpp
+++ b/src/core/hle/service/nvdrv/interface.cpp
@@ -4,13 +4,13 @@
#include "common/logging/log.h"
#include "core/hle/ipc_helpers.h"
+#include "core/hle/service/nvdrv/interface.h"
#include "core/hle/service/nvdrv/nvdrv.h"
-#include "core/hle/service/nvdrv/nvdrv_a.h"
namespace Service {
namespace Nvidia {
-void NVDRV_A::Open(Kernel::HLERequestContext& ctx) {
+void NVDRV::Open(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service, "(STUBBED) called");
auto buffer = ctx.BufferDescriptorA()[0];
@@ -24,7 +24,7 @@ void NVDRV_A::Open(Kernel::HLERequestContext& ctx) {
rb.Push<u32>(0);
}
-void NVDRV_A::Ioctl(Kernel::HLERequestContext& ctx) {
+void NVDRV::Ioctl(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service, "(STUBBED) called");
IPC::RequestParser rp{ctx};
@@ -48,19 +48,19 @@ void NVDRV_A::Ioctl(Kernel::HLERequestContext& ctx) {
rb.Push(nv_result);
}
-void NVDRV_A::Initialize(Kernel::HLERequestContext& ctx) {
+void NVDRV::Initialize(Kernel::HLERequestContext& ctx) {
LOG_WARNING(Service, "(STUBBED) called");
IPC::RequestBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
rb.Push<u32>(0);
}
-NVDRV_A::NVDRV_A(std::shared_ptr<Module> nvdrv)
- : ServiceFramework("nvdrv:a"), nvdrv(std::move(nvdrv)) {
+NVDRV::NVDRV(std::shared_ptr<Module> nvdrv, const char* name)
+ : ServiceFramework(name), nvdrv(std::move(nvdrv)) {
static const FunctionInfo functions[] = {
- {0, &NVDRV_A::Open, "Open"},
- {1, &NVDRV_A::Ioctl, "Ioctl"},
- {3, &NVDRV_A::Initialize, "Initialize"},
+ {0, &NVDRV::Open, "Open"},
+ {1, &NVDRV::Ioctl, "Ioctl"},
+ {3, &NVDRV::Initialize, "Initialize"},
};
RegisterHandlers(functions);
}