summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nvdrv
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-02-09 05:17:59 +0100
committerbunnei <bunneidev@gmail.com>2018-02-09 05:17:59 +0100
commitca990636003d06d43fa0c12c86320e35251f0e59 (patch)
treebb55c2c5d2982236e9bacdf252dda566150627ef /src/core/hle/service/nvdrv
parentacc_u0: Implement ListAllUsers. (diff)
downloadyuzu-ca990636003d06d43fa0c12c86320e35251f0e59.tar
yuzu-ca990636003d06d43fa0c12c86320e35251f0e59.tar.gz
yuzu-ca990636003d06d43fa0c12c86320e35251f0e59.tar.bz2
yuzu-ca990636003d06d43fa0c12c86320e35251f0e59.tar.lz
yuzu-ca990636003d06d43fa0c12c86320e35251f0e59.tar.xz
yuzu-ca990636003d06d43fa0c12c86320e35251f0e59.tar.zst
yuzu-ca990636003d06d43fa0c12c86320e35251f0e59.zip
Diffstat (limited to 'src/core/hle/service/nvdrv')
-rw-r--r--src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp
index d7e0b1bbd..4776c8aa3 100644
--- a/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp
+++ b/src/core/hle/service/nvdrv/devices/nvhost_ctrl_gpu.cpp
@@ -104,8 +104,20 @@ u32 nvhost_ctrl_gpu::ZCullGetCtxSize(const std::vector<u8>& input, std::vector<u
}
u32 nvhost_ctrl_gpu::ZCullGetInfo(const std::vector<u8>& input, std::vector<u8>& output) {
- LOG_WARNING(Service_NVDRV, "(STUBBED) called");
- std::memset(output.data(), 0, output.size());
+ LOG_DEBUG(Service_NVDRV, "called");
+ IoctlNvgpuGpuZcullGetInfoArgs params{};
+ std::memcpy(&params, input.data(), input.size());
+ params.width_align_pixels = 0x20;
+ params.height_align_pixels = 0x20;
+ params.pixel_squares_by_aliquots = 0x400;
+ params.aliquot_total = 0x800;
+ params.region_byte_multiplier = 0x20;
+ params.region_header_size = 0x20;
+ params.subregion_header_size = 0xc0;
+ params.subregion_width_align_pixels = 0x20;
+ params.subregion_height_align_pixels = 0x40;
+ params.subregion_count = 0x10;
+ std::memcpy(output.data(), &params, output.size());
return 0;
}