diff options
Diffstat (limited to 'Ryujinx.Graphics.GAL/MultisampleDescriptor.cs')
| -rw-r--r-- | Ryujinx.Graphics.GAL/MultisampleDescriptor.cs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Ryujinx.Graphics.GAL/MultisampleDescriptor.cs b/Ryujinx.Graphics.GAL/MultisampleDescriptor.cs deleted file mode 100644 index a6fb65aa..00000000 --- a/Ryujinx.Graphics.GAL/MultisampleDescriptor.cs +++ /dev/null @@ -1,19 +0,0 @@ -namespace Ryujinx.Graphics.GAL -{ - public readonly struct MultisampleDescriptor - { - public bool AlphaToCoverageEnable { get; } - public bool AlphaToCoverageDitherEnable { get; } - public bool AlphaToOneEnable { get; } - - public MultisampleDescriptor( - bool alphaToCoverageEnable, - bool alphaToCoverageDitherEnable, - bool alphaToOneEnable) - { - AlphaToCoverageEnable = alphaToCoverageEnable; - AlphaToCoverageDitherEnable = alphaToCoverageDitherEnable; - AlphaToOneEnable = alphaToOneEnable; - } - } -} |
