mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-28 01:22:55 +00:00
Move solution and projects to src
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
||||
{
|
||||
struct SetUserClipDistanceCommand : IGALCommand, IGALCommand<SetUserClipDistanceCommand>
|
||||
{
|
||||
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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user