mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 16:56:40 +00:00
24 lines
748 B
C#
24 lines
748 B
C#
|
using Ryujinx.Graphics.GAL.Multithreading.Resources;
|
|||
|
using Ryujinx.Graphics.Shader;
|
|||
|
|
|||
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.Renderer
|
|||
|
{
|
|||
|
struct CreateBufferCommand : IGALCommand
|
|||
|
{
|
|||
|
public CommandType CommandType => CommandType.CreateBuffer;
|
|||
|
private BufferHandle _threadedHandle;
|
|||
|
private int _size;
|
|||
|
|
|||
|
public void Set(BufferHandle threadedHandle, int size)
|
|||
|
{
|
|||
|
_threadedHandle = threadedHandle;
|
|||
|
_size = size;
|
|||
|
}
|
|||
|
|
|||
|
public static void Run(ref CreateBufferCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|||
|
{
|
|||
|
threaded.Buffers.AssignBuffer(command._threadedHandle, renderer.CreateBuffer(command._size));
|
|||
|
}
|
|||
|
}
|
|||
|
}
|