mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-26 15:49:57 -06:00

* 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
|
|
}
|
|
}
|