mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:38:32 +00:00
52 lines
889 B
C#
52 lines
889 B
C#
|
namespace Ryujinx.Graphics.GAL
|
||
|
{
|
||
|
public enum AdvancedBlendOp
|
||
|
{
|
||
|
Zero,
|
||
|
Src,
|
||
|
Dst,
|
||
|
SrcOver,
|
||
|
DstOver,
|
||
|
SrcIn,
|
||
|
DstIn,
|
||
|
SrcOut,
|
||
|
DstOut,
|
||
|
SrcAtop,
|
||
|
DstAtop,
|
||
|
Xor,
|
||
|
Plus,
|
||
|
PlusClamped,
|
||
|
PlusClampedAlpha,
|
||
|
PlusDarker,
|
||
|
Multiply,
|
||
|
Screen,
|
||
|
Overlay,
|
||
|
Darken,
|
||
|
Lighten,
|
||
|
ColorDodge,
|
||
|
ColorBurn,
|
||
|
HardLight,
|
||
|
SoftLight,
|
||
|
Difference,
|
||
|
Minus,
|
||
|
MinusClamped,
|
||
|
Exclusion,
|
||
|
Contrast,
|
||
|
Invert,
|
||
|
InvertRGB,
|
||
|
InvertOvg,
|
||
|
LinearDodge,
|
||
|
LinearBurn,
|
||
|
VividLight,
|
||
|
LinearLight,
|
||
|
PinLight,
|
||
|
HardMix,
|
||
|
Red,
|
||
|
Green,
|
||
|
Blue,
|
||
|
HslHue,
|
||
|
HslSaturation,
|
||
|
HslColor,
|
||
|
HslLuminosity
|
||
|
}
|
||
|
}
|