diff options
| author | Subv <subv2112@gmail.com> | 2018-07-21 15:50:02 -0500 |
|---|---|---|
| committer | Subv <subv2112@gmail.com> | 2018-07-21 15:50:02 -0500 |
| commit | 5c49e56d417fd98523574e54eb8705d11ea83d88 (patch) | |
| tree | 6bfae33c9ae40c2be7fb04266a2c941e63040a9c /src/core/hle/service/nvdrv/interface.cpp | |
| parent | 0f20fa5a1e179bdad07fe1e0e58243d1927274fd (diff) | |
GPU: Implement the NVGPU_IOCTL_CHANNEL_KICKOFF_PB ioctl2 command.
This behaves quite similarly to the SubmitGPFIFO command. Referenced from Ryujinx.
Many thanks to @gdkchan for investigating this!
Diffstat (limited to 'src/core/hle/service/nvdrv/interface.cpp')
| -rw-r--r-- | src/core/hle/service/nvdrv/interface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/interface.cpp b/src/core/hle/service/nvdrv/interface.cpp index b10efd5c9..1b497b814 100644 --- a/src/core/hle/service/nvdrv/interface.cpp +++ b/src/core/hle/service/nvdrv/interface.cpp @@ -101,7 +101,7 @@ NVDRV::NVDRV(std::shared_ptr<Module> nvdrv, const char* name) {8, &NVDRV::SetClientPID, "SetClientPID"}, {9, nullptr, "DumpGraphicsMemoryInfo"}, {10, nullptr, "InitializeDevtools"}, - {11, nullptr, "Ioctl2"}, + {11, &NVDRV::Ioctl, "Ioctl2"}, {12, nullptr, "Ioctl3"}, {13, &NVDRV::FinishInitialize, "FinishInitialize"}, }; |
