mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:28:49 +00:00
7aa430f1a5
* Add blend microcode registers * Add advanced blend support using host extension * Remove debug message * Use pre-generated table for blend functions * XML docs * Rename AdvancedBlendMode to AdvancedBlendOp for consistency * Remove redundant code * Fix some advanced blend related issues on Vulkan * Formatting
10 lines
141 B
C#
10 lines
141 B
C#
namespace Ryujinx.Graphics.GAL
|
|
{
|
|
public enum AdvancedBlendOverlap
|
|
{
|
|
Uncorrelated,
|
|
Disjoint,
|
|
Conjoint
|
|
}
|
|
}
|