blob: f0f0577940ba1959a310c895399b8d92288bff59 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
{
struct SetUserClipDistanceCommand : IGALCommand
{
public CommandType CommandType => CommandType.SetUserClipDistance;
private int _index;
private bool _enableClip;
public void Set(int index, bool enableClip)
{
_index = index;
_enableClip = enableClip;
}
public static void Run(ref SetUserClipDistanceCommand command, ThreadedRenderer threaded, IRenderer renderer)
{
renderer.Pipeline.SetUserClipDistance(command._index, command._enableClip);
}
}
}
|