Add support for alpha to coverage dithering (#3069)
* Add support for alpha to coverage dithering * Shader cache version bump * Fix wrong alpha register * Ensure support buffer is cleared * New shader specialization based approach
This commit is contained in:
19
Ryujinx.Graphics.GAL/MultisampleDescriptor.cs
Normal file
19
Ryujinx.Graphics.GAL/MultisampleDescriptor.cs
Normal file
@ -0,0 +1,19 @@
|
||||
namespace Ryujinx.Graphics.GAL
|
||||
{
|
||||
public 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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user