blob: 044241e6fcfa941eacb7cc73e73e29b60d7ebd15 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
struct SetStencilTestCommand : IGALCommand, IGALCommand<SetStencilTestCommand>
{
public readonly CommandType CommandType => CommandType.SetStencilTest;
private StencilTestDescriptor _stencilTest;
public void Set(StencilTestDescriptor stencilTest)
{
_stencilTest = stencilTest;
}
public static void Run(ref SetStencilTestCommand command, ThreadedRenderer threaded, IRenderer renderer)
{
renderer.Pipeline.SetStencilTest(command._stencilTest);
}
}
}
|