mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-28 01:17:11 +02:00
Add per-source type memory change tracking, simplified state change tracking, other fixes
This commit is contained in:
parent
c9abf08686
commit
0c7c38df0f
40 changed files with 494 additions and 668 deletions
|
@ -12,9 +12,9 @@ namespace Ryujinx.Graphics.Gpu.Engine
|
|||
private int _offset;
|
||||
private int _size;
|
||||
|
||||
public void Execute(int argument)
|
||||
public void LaunchDma(int argument)
|
||||
{
|
||||
_params = _context.State.Get<Inline2MemoryParams>(MethodOffset.Inline2MemoryParams);
|
||||
_params = _context.State.Get<Inline2MemoryParams>(MethodOffset.I2mParams);
|
||||
|
||||
_isLinear = (argument & 1) != 0;
|
||||
|
||||
|
@ -22,7 +22,7 @@ namespace Ryujinx.Graphics.Gpu.Engine
|
|||
_size = _params.LineLengthIn * _params.LineCount;
|
||||
}
|
||||
|
||||
public void PushData(int argument)
|
||||
public void LoadInlineData(int argument)
|
||||
{
|
||||
if (_isLinear)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue