diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2019-12-29 14:41:50 -0300 |
|---|---|---|
| committer | Thog <thog@protonmail.com> | 2020-01-09 02:13:00 +0100 |
| commit | 654e617fe78b0f5cc86d0bcf0625301abff168f5 (patch) | |
| tree | 01f2eba89039698bec583a3e29c4c50d0e20b8d1 /Ryujinx.Graphics.GAL/DepthStencil/StencilTestDescriptor.cs | |
| parent | af8498d6790ba83f1cf87eccf5f272f2ccbeb169 (diff) | |
Some code cleanup
Diffstat (limited to 'Ryujinx.Graphics.GAL/DepthStencil/StencilTestDescriptor.cs')
| -rw-r--r-- | Ryujinx.Graphics.GAL/DepthStencil/StencilTestDescriptor.cs | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/Ryujinx.Graphics.GAL/DepthStencil/StencilTestDescriptor.cs b/Ryujinx.Graphics.GAL/DepthStencil/StencilTestDescriptor.cs deleted file mode 100644 index 2db53172..00000000 --- a/Ryujinx.Graphics.GAL/DepthStencil/StencilTestDescriptor.cs +++ /dev/null @@ -1,56 +0,0 @@ -namespace Ryujinx.Graphics.GAL.DepthStencil -{ - public struct StencilTestDescriptor - { - public bool TestEnable { get; } - - public CompareOp FrontFunc { get; } - public StencilOp FrontSFail { get; } - public StencilOp FrontDpPass { get; } - public StencilOp FrontDpFail { get; } - public int FrontFuncRef { get; } - public int FrontFuncMask { get; } - public int FrontMask { get; } - public CompareOp BackFunc { get; } - public StencilOp BackSFail { get; } - public StencilOp BackDpPass { get; } - public StencilOp BackDpFail { get; } - public int BackFuncRef { get; } - public int BackFuncMask { get; } - public int BackMask { get; } - - public StencilTestDescriptor( - bool testEnable, - CompareOp frontFunc, - StencilOp frontSFail, - StencilOp frontDpPass, - StencilOp frontDpFail, - int frontFuncRef, - int frontFuncMask, - int frontMask, - CompareOp backFunc, - StencilOp backSFail, - StencilOp backDpPass, - StencilOp backDpFail, - int backFuncRef, - int backFuncMask, - int backMask) - { - TestEnable = testEnable; - FrontFunc = frontFunc; - FrontSFail = frontSFail; - FrontDpPass = frontDpPass; - FrontDpFail = frontDpFail; - FrontFuncRef = frontFuncRef; - FrontFuncMask = frontFuncMask; - FrontMask = frontMask; - BackFunc = backFunc; - BackSFail = backSFail; - BackDpPass = backDpPass; - BackDpFail = backDpFail; - BackFuncRef = backFuncRef; - BackFuncMask = backFuncMask; - BackMask = backMask; - } - } -} |
