GetIUserInterface->CreateUserInterface, Added todos and stub logs. Playreport->PlayReport.

This commit is contained in:
David Marcec 2018-04-22 19:02:18 -07:00
parent df669bc540
commit 27650499bc
10 changed files with 64 additions and 25 deletions

View file

@ -79,7 +79,7 @@ u32 nvhost_ctrl_gpu::GetTPCMasks(const std::vector<u8>& input, std::vector<u8>&
std::memcpy(&params, input.data(), input.size());
LOG_WARNING(Service_NVDRV, "(STUBBED) called, mask=0x%x, mask_buf_addr=0x%" PRIx64,
params.mask_buf_size, params.mask_buf_addr);
params.unk = 0xcafe; // Needs to be non 0, what does this actually do?
params.unk = 0xcafe; // TODO(ogniK): Needs to be non 0, what does this actually do?
std::memcpy(output.data(), &params, sizeof(params));
return 0;
}