1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-09-14 21:57:53 -05:00

Merge pull request #2 from gdkchan/direct_memory

Removed parts of the MMU functionality to use memory directly (faster…
This commit is contained in:
gdkchan
2018-02-08 20:20:01 -03:00
committed by GitHub
10 changed files with 89 additions and 188 deletions

View File

@@ -155,8 +155,7 @@ namespace Ryujinx.OsHle.Objects
HNvMap NvMap = Context.Ns.Os.Handles.GetData<HNvMap>(Handle);
Context.Ns.Gpu.Renderer.FrameBufferPtr =
Context.Memory.Manager.GetPhys(NvMap.Address, AMemoryPerm.Read);
Context.Ns.Gpu.Renderer.FrameBufferPtr = NvMap.Address;
}
return MakeReplyParcel(Context, 0);