mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-22 02:31:12 +02:00
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
19 lines
538 B
C#
19 lines
538 B
C#
namespace Ryujinx.Graphics.GAL.Multithreading.Commands
|
|
{
|
|
struct SetDepthClampCommand : IGALCommand, IGALCommand<SetDepthClampCommand>
|
|
{
|
|
public readonly CommandType CommandType => CommandType.SetDepthClamp;
|
|
private bool _clamp;
|
|
|
|
public void Set(bool clamp)
|
|
{
|
|
_clamp = clamp;
|
|
}
|
|
|
|
public static void Run(ref SetDepthClampCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
{
|
|
renderer.Pipeline.SetDepthClamp(command._clamp);
|
|
}
|
|
}
|
|
}
|