early-access version 1969

This commit is contained in:
pineappleEA 2021-08-07 03:53:39 +02:00
parent f80a6f925e
commit 5a79f05935
2 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 1968. This is the source code for early-access 1969.
## Legal Notice ## Legal Notice

View File

@ -176,11 +176,11 @@ NvResult nvhost_nvdec_common::MapBuffer(const std::vector<u8>& input, std::vecto
} }
NvResult nvhost_nvdec_common::UnmapBuffer(const std::vector<u8>& input, std::vector<u8>& output) { NvResult nvhost_nvdec_common::UnmapBuffer(const std::vector<u8>& input, std::vector<u8>& output) {
// This is intentionally left stubbed. // This is intntionally stubbed.
// By unmapping GPU buffers here, we break the continuity of the VP9 reference frame addresses, // Skip unmapping buffers here, as to not break the continuity of the VP9 reference frame
// and risk invalidating data before the async GPU thread is done with it // addresses, and risk invalidating data before the async GPU thread is done with it
LOG_DEBUG(Service_NVDRV, "(STUBBED) called");
std::memset(output.data(), 0, output.size()); std::memset(output.data(), 0, output.size());
LOG_DEBUG(Service_NVDRV, "(STUBBED) called");
return NvResult::Success; return NvResult::Success;
} }