Skip to content
Snippets Groups Projects
Unverified Commit bc293e17 authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1476 from bunnei/fix-unmap-flush

nvhost_as_gpu: Flush/invalidate CPU VAddr on UnmapBuffer.
parents 83ac3e63 bf795eda
No related branches found
No related tags found
No related merge requests found
......@@ -167,10 +167,11 @@ u32 nvhost_as_gpu::UnmapBuffer(const std::vector<u8>& input, std::vector<u8>& ou
auto& system_instance = Core::System::GetInstance();
// Remove this memory region from the rasterizer cache.
system_instance.Renderer().Rasterizer().FlushAndInvalidateRegion(params.offset,
itr->second.size);
auto& gpu = system_instance.GPU();
auto cpu_addr = gpu.MemoryManager().GpuToCpuAddress(params.offset);
ASSERT(cpu_addr);
system_instance.Renderer().Rasterizer().FlushAndInvalidateRegion(*cpu_addr, itr->second.size);
params.offset = gpu.MemoryManager().UnmapBuffer(params.offset, itr->second.size);
buffer_mappings.erase(itr->second.offset);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment