21 lines
270 B
C#
21 lines
270 B
C#
namespace CPF.Mac.AppKit
|
|
{
|
|
public enum NSCompositingOperation : ulong
|
|
{
|
|
Clear,
|
|
Copy,
|
|
SourceOver,
|
|
SourceIn,
|
|
SourceOut,
|
|
SourceAtop,
|
|
DestinationOver,
|
|
DestinationIn,
|
|
DestinationOut,
|
|
DestinationAtop,
|
|
Xor,
|
|
PlusDarker,
|
|
Highlight,
|
|
PlusLighter
|
|
}
|
|
}
|