mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-22 10:31:13 +02:00
13 lines
243 B
C#
13 lines
243 B
C#
namespace Ryujinx.Graphics.Gpu.State
|
|
{
|
|
/// <summary>
|
|
/// Stencil test masks for back tests.
|
|
/// </summary>
|
|
struct StencilBackMasks
|
|
{
|
|
public int FuncRef;
|
|
public int Mask;
|
|
public int FuncMask;
|
|
}
|
|
}
|