mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-07-15 23:13:33 +08:00
35 lines
418 B
C#
35 lines
418 B
C#
![]() |
namespace CPF.Mac.CoreGraphics
|
||
|
{
|
||
|
public enum CGBlendMode
|
||
|
{
|
||
|
Normal,
|
||
|
Multiply,
|
||
|
Screen,
|
||
|
Overlay,
|
||
|
Darken,
|
||
|
Lighten,
|
||
|
ColorDodge,
|
||
|
ColorBurn,
|
||
|
SoftLight,
|
||
|
HardLight,
|
||
|
Difference,
|
||
|
Exclusion,
|
||
|
Hue,
|
||
|
Saturation,
|
||
|
Color,
|
||
|
Luminosity,
|
||
|
Clear,
|
||
|
Copy,
|
||
|
SourceIn,
|
||
|
SourceOut,
|
||
|
SourceAtop,
|
||
|
DestinationOver,
|
||
|
DestinationIn,
|
||
|
DestinationOut,
|
||
|
DestinationAtop,
|
||
|
XOR,
|
||
|
PlusDarker,
|
||
|
PlusLighter
|
||
|
}
|
||
|
}
|