mirror of
https://gitee.com/csharpui/CPF.git
synced 2025-04-05 17:37:51 +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
|
|
}
|
|
}
|