summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-10-25 06:34:40 +0200
committerLiam <byteslice@airmail.cc>2023-10-25 19:05:56 +0200
commit723df0f3685f01ce5a0330d567932136a9de7a8f (patch)
tree5b26229e14b70dba5d59d9265b750e5edff874b5 /src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h
parentnvdrv: fix up remaining copy calls (diff)
downloadyuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar.gz
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar.bz2
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar.lz
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar.xz
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.tar.zst
yuzu-723df0f3685f01ce5a0330d567932136a9de7a8f.zip
Diffstat (limited to 'src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h b/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h
index e1977a6b5..d170299bd 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h
+++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.h
@@ -152,10 +152,11 @@ private:
static_assert(sizeof(IoctlGetGpuTime) == 0x10, "IoctlGetGpuTime is incorrect size");
NvResult GetCharacteristics1(IoctlCharacteristics& params);
- NvResult GetCharacteristics3(IoctlCharacteristics& params, std::span<u8> inline_output);
+ NvResult GetCharacteristics3(IoctlCharacteristics& params,
+ std::span<IoctlGpuCharacteristics> gpu_characteristics);
NvResult GetTPCMasks1(IoctlGpuGetTpcMasksArgs& params);
- NvResult GetTPCMasks3(IoctlGpuGetTpcMasksArgs& params, std::span<u8> inline_output);
+ NvResult GetTPCMasks3(IoctlGpuGetTpcMasksArgs& params, std::span<u32> tpc_mask);
NvResult GetActiveSlotMask(IoctlActiveSlotMask& params);
NvResult ZCullGetCtxSize(IoctlZcullGetCtxSize& params);