2022-01-09 17:28:48 +01:00
|
|
|
|
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
|
|
|
|
using Ryujinx.Graphics.GAL.Multithreading.Resources;
|
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Texture
|
|
|
|
|
{
|
2023-01-22 01:07:43 +01:00
|
|
|
|
struct TextureGetDataSliceCommand : IGALCommand, IGALCommand<TextureGetDataSliceCommand>
|
2022-01-09 17:28:48 +01:00
|
|
|
|
{
|
|
|
|
|
public CommandType CommandType => CommandType.TextureGetDataSlice;
|
|
|
|
|
private TableRef<ThreadedTexture> _texture;
|
|
|
|
|
private TableRef<ResultBox<PinnedSpan<byte>>> _result;
|
|
|
|
|
private int _layer;
|
|
|
|
|
private int _level;
|
|
|
|
|
|
|
|
|
|
public void Set(TableRef<ThreadedTexture> texture, TableRef<ResultBox<PinnedSpan<byte>>> result, int layer, int level)
|
|
|
|
|
{
|
|
|
|
|
_texture = texture;
|
|
|
|
|
_result = result;
|
|
|
|
|
_layer = layer;
|
|
|
|
|
_level = level;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void Run(ref TextureGetDataSliceCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
|
|
|
{
|
2023-03-19 21:56:48 +01:00
|
|
|
|
PinnedSpan<byte> result = command._texture.Get(threaded).Base.GetData(command._layer, command._level);
|
2022-01-09 17:28:48 +01:00
|
|
|
|
|
2023-03-19 21:56:48 +01:00
|
|
|
|
command._result.Get(threaded).Result = result;
|
2022-01-09 17:28:48 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|