Support inline index buffer data (#1351)

* Support inline index buffer data

* Sort usings
This commit is contained in:
gdkchan 2020-07-03 19:41:27 -03:00 committed by GitHub
parent b0d9ec8a82
commit dbeb50684d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 146 additions and 5 deletions

View file

@ -74,7 +74,7 @@ namespace Ryujinx.Graphics.Gpu.Engine
if (_isLinear && _params.LineCount == 1)
{
ulong address = _context.MemoryManager.Translate( _params.DstAddress.Pack());
ulong address = _context.MemoryManager.Translate(_params.DstAddress.Pack());
_context.PhysicalMemory.Write(address, data);
}