mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 22:48:36 +00:00
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
using Ryujinx.Graphics.Gpu.State;
|
|
using System;
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Engine
|
|
{
|
|
partial class Methods
|
|
{
|
|
private Inline2MemoryParams _params;
|
|
|
|
private bool _isLinear;
|
|
|
|
private int _offset;
|
|
private int _size;
|
|
|
|
public void LaunchDma(int argument)
|
|
{
|
|
_params = _context.State.Get<Inline2MemoryParams>(MethodOffset.I2mParams);
|
|
|
|
_isLinear = (argument & 1) != 0;
|
|
|
|
_offset = 0;
|
|
_size = _params.LineLengthIn * _params.LineCount;
|
|
}
|
|
|
|
public void LoadInlineData(int argument)
|
|
{
|
|
if (_isLinear)
|
|
{
|
|
for (int shift = 0; shift < 32 && _offset < _size; shift += 8, _offset++)
|
|
{
|
|
ulong gpuVa = _params.DstAddress.Pack() + (ulong)_offset;
|
|
|
|
_context.MemoryAccessor.Write(gpuVa, new byte[] { (byte)(argument >> shift) });
|
|
}
|
|
}
|
|
else
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
} |